summaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorShivam Agrawal <shivagra@codeaurora.org>2021-08-31 13:07:56 +0530
committerShivam Agrawal <shivagra@codeaurora.org>2021-09-09 18:34:01 +0530
commit96053a8cf9bf5db370291fa97efb4e52eb717c04 (patch)
tree69de5f4b132a84a23bf18d70988e309bde5791d9 /Android.mk
parent94669d11f25fa4fc48d3d3206d396e5dcf53fa06 (diff)
opensource-wfd: Removing libaac from system sideHEADsugisawa
The lib is not used by system partition and hence being removed. Change-Id: I592ff69f93715bfa1e1f64fb6cda8f2ea50b6ce6
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index f8f2bb4..7cf5ecd 100644
--- a/Android.mk
+++ b/Android.mk
@@ -7,8 +7,15 @@ WFD_DISABLE_PLATFORM_LIST := bengal
endif
endif
+# ------------------------------------------------------------------------------
+# Guard compilation of vendor projects from qssi/qssi_32 as these modules
+# would be scanned during initial stages of qssi/qssi_32 compilation.
+# non-src shippable deps of such such modules would raise compilation issues
+# in qssi/qssi_32 customer variant compilation.
+ifneq ($(call is-product-in-list, qssi qssi_32),true)
ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true)
ifneq ($(TARGET_HAS_LOW_RAM), true)
include $(call all-makefiles-under, $(LOCAL_PATH))
endif
endif
+endif