diff options
-rw-r--r-- | hci/Android.mk | 7 | ||||
-rw-r--r-- | hci/include/bt_hci_bdroid.h | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/hci/Android.mk b/hci/Android.mk index f2a63e5..b0dc4aa 100644 --- a/hci/Android.mk +++ b/hci/Android.mk @@ -2,6 +2,8 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) +LOCAL_CFLAGS += $(bdroid_CFLAGS) + LOCAL_SRC_FILES := \ src/bt_hci_bdroid.c \ src/lpm.c \ @@ -11,7 +13,7 @@ LOCAL_SRC_FILES := \ ifeq ($(BLUETOOTH_HCI_USE_MCT),true) -LOCAL_CFLAGS := -DHCI_USE_MCT +LOCAL_CFLAGS += -DHCI_USE_MCT LOCAL_SRC_FILES += \ src/hci_mct.c \ @@ -27,7 +29,8 @@ endif LOCAL_C_INCLUDES += \ $(LOCAL_PATH)/include \ - $(LOCAL_PATH)/../utils/include + $(LOCAL_PATH)/../utils/include \ + $(bdroid_C_INCLUDES) LOCAL_SHARED_LIBRARIES := \ libcutils \ diff --git a/hci/include/bt_hci_bdroid.h b/hci/include/bt_hci_bdroid.h index 5681e85..c97bd9e 100644 --- a/hci/include/bt_hci_bdroid.h +++ b/hci/include/bt_hci_bdroid.h @@ -32,6 +32,11 @@ #include "bt_hci_lib.h" +#ifdef HAS_BDROID_BUILDCFG +#include "bdroid_buildcfg.h" +#endif + + /****************************************************************************** ** Constants & Macros ******************************************************************************/ |