summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Koskovich <akoskovich@pm.me>2022-09-23 14:07:07 -0700
committerAlexander Koskovich <akoskovich@pm.me>2022-10-05 18:23:27 -0700
commita52b42d7ded65ce89d3b322f6e9dfe95bb4f7161 (patch)
tree7805740b17c1c6d922adff3ffcd897980dcab13d
parentd1d2ded5212048bde8350110dc539684deb55901 (diff)
audio: Don't include any makefiles if BSP is not presenttachibana-8450
* Nothing here compiles, but we want to have the split makefiles present to build some packages and pick up properties. Change-Id: I93df49b477da80f694b5f4da3849c6768af28a94
-rw-r--r--Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 2d3a70e1..ab18505a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -3,9 +3,11 @@ ifeq ($(TARGET_USES_QCOM_MM_AUDIO), true)
MY_LOCAL_PATH := $(call my-dir)
+ifneq ($(wildcard vendor/qcom/proprietary/args),)
include $(MY_LOCAL_PATH)/hal/Android.mk
include $(MY_LOCAL_PATH)/hal/audio_extn/Android.mk
include $(MY_LOCAL_PATH)/audio-effects/Android.mk
+endif
endif
endif