• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Bluetooth test suite for target
2// ========================================================
3cc_test {
4    name: "net_test_bluetooth",
5    test_suites: ["device-tests"],
6    defaults: ["fluoride_defaults"],
7    include_dirs: ["system/bt"],
8    srcs: [
9        "adapter/adapter_unittest.cc",
10        "adapter/bluetooth_test.cc",
11        "gatt/gatt_test.cc",
12        "gatt/gatt_unittest.cc",
13    ],
14    header_libs: ["libhardware_headers"],
15    shared_libs: [
16        "liblog",
17        "libcutils",
18        "libbinder",
19        "libutils",
20    ],
21    static_libs: [
22        "libbtcore",
23        "libosi",
24    ],
25    whole_static_libs: [
26        "libbluetoothtbd_hal",
27    ],
28}
29
30// Bluetooth test suite for target
31// ========================================================
32cc_test {
33    name: "net_test_rfcomm_suite",
34    defaults: ["fluoride_defaults"],
35    include_dirs: ["system/bt"],
36    srcs: [
37        "adapter/bluetooth_test.cc",
38        "rfcomm/rfcomm_test.cc",
39        "rfcomm/rfcomm_unittest.cc",
40    ],
41    header_libs: [ "libhardware_headers" ],
42    shared_libs: [
43        "liblog",
44        "libcutils",
45        "libbinder",
46        "libutils",
47    ],
48    static_libs: [
49        "libbtcore",
50        "libosi",
51    ],
52    whole_static_libs: [
53        "libbluetoothtbd_hal",
54    ],
55}
56