1 # 2 # libbluedroid 3 # 4 5 LOCAL_PATH:= $(call my-dir) 6 7 include $(CLEAR_VARS) 8 9 LOCAL_SRC_FILES := \ 10 bluetooth.c 11 12 LOCAL_C_INCLUDES := \ 13 $(LOCAL_PATH)/include \ 14 system/bluetooth/bluez-clean-headers 15 16 LOCAL_SHARED_LIBRARIES := \ 17 libcutils 18 19 LOCAL_MODULE := libbluedroid 20 21 include $(BUILD_SHARED_LIBRARY) 22