• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1python_test_host {
2    name: "BluetoothBaseTest",
3    main: "bluetooth_base_test.py",
4    srcs: ["bluetooth_base_test.py"],
5    libs: [
6        "mobly",
7        "mbs_utils"
8    ],
9    test_suites: [
10        "catbox",
11    ],
12    test_options: {
13        unit_test: false,
14    },
15    data: [
16        // Package the snippet with the mobly test
17        ":AutomotiveSnippet",
18        ":PhoneSnippet",
19    ],
20    version: {
21        py3: {
22            embedded_launcher: true,
23        },
24    },
25}
26
27python_library_host {
28    name: "BluetoothTestLibrary",
29    pkg_path: "bluetooth_test",
30    srcs: ["bluetooth_base_test.py"],
31    libs: [
32        "mobly",
33        "mbs_utils"
34    ],
35    data: [
36        // Package the snippet with the mobly test
37        ":AutomotiveSnippet",
38        ":PhoneSnippet",
39    ],
40    version: {
41        py3: {
42            embedded_launcher: true,
43        },
44    },
45}