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_hfpclient.cpp \ 9 com_android_bluetooth_a2dp.cpp \ 10 com_android_bluetooth_a2dp_sink.cpp \ 11 com_android_bluetooth_avrcp.cpp \ 12 com_android_bluetooth_avrcp_controller.cpp \ 13 com_android_bluetooth_hid.cpp \ 14 com_android_bluetooth_hdp.cpp \ 15 com_android_bluetooth_pan.cpp \ 16 com_android_bluetooth_gatt.cpp 17 18 LOCAL_C_INCLUDES += \ 19 $(JNI_H_INCLUDE) \ 20 21 LOCAL_SHARED_LIBRARIES := \ 22 libandroid_runtime \ 23 libnativehelper \ 24 libcutils \ 25 libutils \ 26 liblog \ 27 libhardware 28 29 LOCAL_MULTILIB := 32 30 31 #LOCAL_CFLAGS += -O0 -g 32 33 LOCAL_MODULE := libbluetooth_jni 34 LOCAL_MODULE_TAGS := optional 35 36 include $(BUILD_SHARED_LIBRARY) 37