1 cc_library_shared { 2 name: "libbluetooth_jni", 3 srcs: [ 4 "com_android_bluetooth_btservice_AdapterService.cpp", 5 "com_android_bluetooth_hfp.cpp", 6 "com_android_bluetooth_hfpclient.cpp", 7 "com_android_bluetooth_a2dp.cpp", 8 "com_android_bluetooth_a2dp_sink.cpp", 9 "com_android_bluetooth_avrcp.cpp", 10 "com_android_bluetooth_avrcp_controller.cpp", 11 "com_android_bluetooth_hid.cpp", 12 "com_android_bluetooth_hidd.cpp", 13 "com_android_bluetooth_hdp.cpp", 14 "com_android_bluetooth_pan.cpp", 15 "com_android_bluetooth_gatt.cpp", 16 "com_android_bluetooth_sdp.cpp", 17 ], 18 include_dirs: [ 19 "libnativehelper/include/nativehelper", 20 "system/bt/types", 21 ], 22 shared_libs: [ 23 "libandroid_runtime", 24 "libchrome", 25 "libnativehelper", 26 "libcutils", 27 "libutils", 28 "liblog", 29 "libhardware", 30 ], 31 static_libs: [ 32 "libbluetooth-types", 33 ], 34 cflags: [ 35 "-Wall", 36 "-Wextra", 37 "-Wno-unused-parameter", 38 ], 39 } 40