Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES:= \ |
Matthew Xie | 6c91bc0 | 2012-02-16 18:47:53 -0800 | [diff] [blame] | 6 | com_android_bluetooth_btservice_AdapterService.cpp \ |
| 7 | com_android_bluetooth_hfp.cpp \ |
broodplank | 0c58930 | 2013-12-29 05:41:41 +0100 | [diff] [blame] | 8 | com_android_bluetooth_hfpclient.cpp \ |
Matthew Xie | 35207a5 | 2012-03-21 23:11:40 -0700 | [diff] [blame] | 9 | com_android_bluetooth_a2dp.cpp \ |
Zhihai Xu | c1c259c | 2013-03-14 11:51:06 -0700 | [diff] [blame] | 10 | com_android_bluetooth_avrcp.cpp \ |
Matthew Xie | 35207a5 | 2012-03-21 23:11:40 -0700 | [diff] [blame] | 11 | com_android_bluetooth_hid.cpp \ |
fredc | 6654f5c | 2012-04-12 00:18:52 -0700 | [diff] [blame] | 12 | com_android_bluetooth_hdp.cpp \ |
Ganesh Ganapathi Batta | 03b8386 | 2013-02-05 15:38:27 -0800 | [diff] [blame] | 13 | com_android_bluetooth_pan.cpp \ |
| 14 | com_android_bluetooth_gatt.cpp |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 15 | |
| 16 | LOCAL_C_INCLUDES += \ |
| 17 | $(JNI_H_INCLUDE) \ |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := \ |
| 20 | libandroid_runtime \ |
| 21 | libnativehelper \ |
| 22 | libcutils \ |
| 23 | libutils \ |
Ying Wang | b4f89ed | 2013-04-09 22:02:05 -0700 | [diff] [blame] | 24 | liblog \ |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 25 | libhardware |
| 26 | |
| 27 | #LOCAL_CFLAGS += -O0 -g |
| 28 | |
| 29 | LOCAL_MODULE := libbluetooth_jni |
| 30 | LOCAL_MODULE_TAGS := optional |
| 31 | |
| 32 | include $(BUILD_SHARED_LIBRARY) |