1// This empty test host is needed for building required host binary
2// "bumble_pandora_server" and include it in test zip
3java_test_host {
4    name: "BluetoothMetricsTests",
5
6    srcs: [
7        "**/*.kt",
8    ],
9
10    static_libs: [
11        "cts-statsd-atom-host-test-utils",
12        "platformprotos",
13    ],
14
15    libs: [
16        "tradefed",
17    ],
18
19    data: [
20        ":BluetoothMetricsTestApp",
21    ],
22
23    data_native_bins: [
24        "bumble_pandora_server",
25    ],
26
27    required: ["bumble_pandora_server"],
28
29    test_suites: [
30        "general-tests",
31    ],
32}
33