summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Veit <claymore1298@gmail.com>2019-08-22 17:26:51 +0200
committerJulian Veit <claymore1298@gmail.com>2019-08-22 18:37:59 +0200
commita7a09c91824d0eaff81764940665ef181ece8fb2 (patch)
tree380b8f178ba239178cb3acd599e3f3407974080d
parentd79bda57cdda778713a3f3024a4b90343ec2e522 (diff)
MusicFX: add Buildflag TARGET_USE_NO_MUSICFXHEADp9.0
This flag prevents building of MusicFX. To enable it set the following in Board.mk: TARGET_USE_MUSICFX := false Change-Id: I94e2f02ba76dc602e1b135aa97216a9503d0c4e7
-rw-r--r--Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 2d1fe94..711739e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,3 +1,4 @@
+ifneq ($(TARGET_USE_NO_MUSICFX),true)
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
@@ -24,3 +25,4 @@ LOCAL_CERTIFICATE := platform
LOCAL_PRIVATE_PLATFORM_APIS := true
include $(BUILD_PACKAGE)
+endif