Home | History | Annotate | Download | only in bluedroid
      1 #
      2 # libbluedroid
      3 #
      4 
      5 LOCAL_PATH:= $(call my-dir)
      6 
      7 include $(CLEAR_VARS)
      8 
      9 ifeq ($(BOARD_BLUETOOTH_DOES_NOT_USE_RFKILL),true)
     10   LOCAL_CFLAGS := $(LOCAL_CFLAGS) -DBLUETOOTH_DOES_NOT_USE_RFKILL
     11 endif
     12 
     13 ifeq ($(BOARD_BLUETOOTH_USES_HCIATTACH_PROPERTY),true)
     14   LOCAL_CFLAGS := $(LOCAL_CFLAGS) -DBLUETOOTH_HCIATTACH_USING_PROPERTY
     15 endif
     16 
     17 LOCAL_SRC_FILES := \
     18 	bluetooth.c
     19 
     20 LOCAL_C_INCLUDES := \
     21 	$(LOCAL_PATH)/include \
     22 	system/bluetooth/bluez-clean-headers
     23 
     24 LOCAL_SHARED_LIBRARIES := \
     25 	libcutils
     26 
     27 LOCAL_MODULE := libbluedroid
     28 
     29 include $(BUILD_SHARED_LIBRARY)
     30