1// Bluetooth test suite for target 2// ======================================================== 3cc_test { 4 name: "net_test_bluetooth", 5 defaults: ["fluoride_defaults"], 6 include_dirs: ["system/bt"], 7 srcs: [ 8 "adapter/adapter_unittest.cc", 9 "adapter/bluetooth_test.cc", 10 "gatt/gatt_test.cc", 11 "gatt/gatt_unittest.cc", 12 ], 13 shared_libs: [ 14 "liblog", 15 "libhardware", 16 "libcutils", 17 ], 18 static_libs: [ 19 "libbtcore", 20 "libosi", 21 ], 22 whole_static_libs: [ 23 "libbluetoothtbd_hal", 24 ], 25} 26 27// Bluetooth test suite for target 28// ======================================================== 29cc_test { 30 name: "net_test_rfcomm", 31 defaults: ["fluoride_defaults"], 32 include_dirs: ["system/bt"], 33 srcs: [ 34 "adapter/bluetooth_test.cc", 35 "rfcomm/rfcomm_test.cc", 36 "rfcomm/rfcomm_unittest.cc", 37 ], 38 shared_libs: [ 39 "liblog", 40 "libhardware", 41 "libcutils", 42 ], 43 static_libs: [ 44 "libbtcore", 45 "libosi", 46 ], 47 whole_static_libs: [ 48 "libbluetoothtbd_hal", 49 ], 50} 51