mirror of
https://github.com/Evolution-X-Devices/device_google_wahoo
synced 2026-01-27 18:19:03 +00:00
Modules that can't be built in PDK are disabled when TARGET_BUILD_PDK is true Bug: 71361051 Test: lunch aosp_walleye-userdebug PDK_FUSION_PLATFORM_ZIP=vendor/pdk/walleye/walleye-userdebug/platform/platform.zip m -j Change-Id: I2cc7ab6d667daab7d3566baf8a9b473cafc4e452
29 lines
494 B
Makefile
Executable File
29 lines
494 B
Makefile
Executable File
LOCAL_PATH := $(call my-dir)
|
|
|
|
# Disabling when building with PDK (b/68767391)
|
|
ifneq ($(TARGET_BUILD_PDK),true)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroid \
|
|
libcutils \
|
|
liblog
|
|
|
|
LOCAL_SRC_FILES := \
|
|
main.cpp
|
|
|
|
LOCAL_C_INCLUDES :=
|
|
|
|
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"folio_daemon\" -DLOG_NDEBUG=0
|
|
|
|
LOCAL_CFLAGS += -Wall -Werror
|
|
|
|
LOCAL_MODULE := folio_daemon
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_MODULE_OWNER := google
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|