summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu Prasad <mpras@codeaurora.org>2020-01-21 15:30:58 +0530
committerManu Prasad <mpras@codeaurora.org>2020-05-04 18:33:42 +0530
commit1e18ad9befebffd3892801e7bca0e51458445807 (patch)
treeb5a2d4e355bd5204a331ff345acbb57920c93fe6
parent766318cb3c28d10ec3e501a69537d020074d9a72 (diff)
libaac: Disable WFD feature
Change-Id: Iacac14b3e266472036b052ab2616bd021776d6b8
-rw-r--r--Android.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 5c069fe..560508e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -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