diff options
author | Sravan voleti <sravankumar@codeaurora.org> | 2019-12-12 12:33:18 +0530 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-12-18 21:12:52 -0800 |
commit | 33c4f8e378c3f788152bad4b649b719751da524c (patch) | |
tree | 0fb8c6be18d24ce6fafdde0b7e840176c25968ea | |
parent | 94fb9238e7704f79ecd1f128aa9203c948408d0b (diff) |
Bluetooth: select the appropriate Bluetooth implementation
This depends on the value of TARGET_USE_QTI_BT_STACK variable.
Bug: 145926288
CRs-Fixed: 2585000
Change-Id: I4d2f0adb23081627825ee3958c2f562d2a54bebc
-rw-r--r-- | bt-system-opensource-product.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bt-system-opensource-product.mk b/bt-system-opensource-product.mk index f334a42..fcc344a 100644 --- a/bt-system-opensource-product.mk +++ b/bt-system-opensource-product.mk @@ -21,6 +21,12 @@ ifeq ($(TARGET_USE_QTI_BT_STACK),true) PRODUCT_PACKAGES += libbluetooth_qti_jni endif #TARGET_USE_QTI_BT_STACK +ifeq ($(TARGET_USE_QTI_BT_STACK),true) +PRODUCT_SOONG_NAMESPACES += vendor/qcom/opensource/commonsys/packages/apps/Bluetooth +else +PRODUCT_SOONG_NAMESPACES += packages/apps/Bluetooth +endif #TARGET_USE_QTI_BT_STACK + PRODUCT_PACKAGES += bt_logger PRODUCT_PACKAGES += libbt-logClient PRODUCT_PACKAGES += BluetoothExt |