diff options
author | Alexander Koskovich <akoskovich@pm.me> | 2022-09-23 14:07:07 -0700 |
---|---|---|
committer | Alexander Koskovich <akoskovich@pm.me> | 2022-10-05 18:23:27 -0700 |
commit | a52b42d7ded65ce89d3b322f6e9dfe95bb4f7161 (patch) | |
tree | 7805740b17c1c6d922adff3ffcd897980dcab13d | |
parent | d1d2ded5212048bde8350110dc539684deb55901 (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.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |