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 com_android_bluetooth_sdp.cpp 18 19 LOCAL_C_INCLUDES += \ 20 $(JNI_H_INCLUDE) \ 21 22 LOCAL_SHARED_LIBRARIES := \ 23 libandroid_runtime \ 24 libnativehelper \ 25 libcutils \ 26 libutils \ 27 liblog \ 28 libhardware 29 30 LOCAL_MULTILIB := 32 31 32 LOCAL_CFLAGS += -Wall -Wextra -Wno-unused-parameter 33 34 LOCAL_MODULE := libbluetooth_jni 35 LOCAL_MODULE_TAGS := optional 36 37 include $(BUILD_SHARED_LIBRARY) 38