Skip to content

Commit

Permalink
Disable modules that can't be built in PDK
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jiyongp committed Mar 8, 2018
1 parent 9dc4b0c commit 56c0900
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions folio_daemon/Android.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
LOCAL_PATH := $(call my-dir)

# Disabling when building with PDK (b/68767391)
ifneq ($(TARGET_BUILD_PDK),true)

include $(CLEAR_VARS)

LOCAL_SHARED_LIBRARIES := \
Expand All @@ -20,3 +24,5 @@ LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_OWNER := google

include $(BUILD_EXECUTABLE)

endif

0 comments on commit 56c0900

Please sign in to comment.