1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 LOCAL_SRC_FILES:= \ 6 com_android_bluetooth_btservice_AdapterService.cpp \ 7 com_android_bluetooth_hfp.cpp \ 8 com_android_bluetooth_a2dp.cpp \ 9 com_android_bluetooth_avrcp.cpp \ 10 com_android_bluetooth_hid.cpp \ 11 com_android_bluetooth_hdp.cpp \ 12 com_android_bluetooth_pan.cpp \ 13 com_android_bluetooth_gatt.cpp 14 15 LOCAL_C_INCLUDES += \ 16 $(JNI_H_INCLUDE) \ 17 18 LOCAL_SHARED_LIBRARIES := \ 19 libandroid_runtime \ 20 libnativehelper \ 21 libcutils \ 22 libutils \ 23 liblog \ 24 libhardware 25 26 #LOCAL_CFLAGS += -O0 -g 27 28 LOCAL_MODULE := libbluetooth_jni 29 LOCAL_MODULE_TAGS := optional 30 31 include $(BUILD_SHARED_LIBRARY) 32