69 lines
1.5 KiB
Text
69 lines
1.5 KiB
Text
// Bluetooth test suite for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_bluetooth",
|
|
test_suites: ["device-tests"],
|
|
defaults: ["fluoride_defaults"],
|
|
include_dirs: ["system/bt"],
|
|
srcs: [
|
|
"adapter/adapter_unittest.cc",
|
|
"adapter/bluetooth_test.cc",
|
|
"gatt/gatt_test.cc",
|
|
"gatt/gatt_unittest.cc",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libhardware",
|
|
"libcutils",
|
|
],
|
|
static_libs: [
|
|
"libbtcore",
|
|
"libosi",
|
|
],
|
|
whole_static_libs: [
|
|
"libbluetoothtbd_hal",
|
|
],
|
|
}
|
|
|
|
// Bluetooth test suite for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_rfcomm",
|
|
defaults: ["fluoride_defaults"],
|
|
include_dirs: ["system/bt"],
|
|
srcs: [
|
|
"adapter/bluetooth_test.cc",
|
|
"rfcomm/rfcomm_test.cc",
|
|
"rfcomm/rfcomm_unittest.cc",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libhardware",
|
|
"libcutils",
|
|
],
|
|
static_libs: [
|
|
"libbtcore",
|
|
"libosi",
|
|
],
|
|
whole_static_libs: [
|
|
"libbluetoothtbd_hal",
|
|
],
|
|
}
|
|
|
|
// Bluetooth test suite for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "performance_test",
|
|
defaults: ["fluoride_defaults"],
|
|
include_dirs: ["system/bt"],
|
|
srcs: [
|
|
"core/thread_performance_test.cc",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"libgmock",
|
|
"libosi",
|
|
],
|
|
}
|