diff options
-rw-r--r-- | Android.mk | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,2 +1,12 @@ LOCAL_PATH := $(call my-dir) + +#Disable WFD for selected 32-bit targets +ifeq ($(call is-board-platform,bengal),true) +ifeq ($(TARGET_BOARD_SUFFIX),_32) +WFD_DISABLE_PLATFORM_LIST := bengal +endif +endif + +ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true) include $(call all-makefiles-under, $(LOCAL_PATH)) +endif |