1python_library_host {
2    name: "bluetooth_test",
3    pkg_path: "bluetooth_test",
4    srcs: ["bluetooth_base_test.py"],
5    libs: [
6        "mobly",
7        "utilities"
8    ],
9    data: [
10        // Package the snippet with the mobly test
11        ":AutomotiveSnippet",
12        ":PhoneSnippet",
13    ],
14    version: {
15        py3: {
16            embedded_launcher: true,
17        },
18    },
19}
20
21python_test_host {
22    name: "BluetoothSMSBaseTest",
23    main: "bluetooth_sms_base_test.py",
24    srcs: ["bluetooth_sms_base_test.py"],
25    libs: [
26        "mobly",
27        "utilities",
28        "bluetooth_test"
29    ],
30    test_suites: [
31        "catbox",
32    ],
33    test_options: {
34        unit_test: false,
35    },
36    data: [
37        // Package the snippet with the mobly test
38        ":AutomotiveSnippet",
39        ":PhoneSnippet",
40    ],
41    version: {
42        py3: {
43            embedded_launcher: true,
44        },
45    },
46}
47
48python_library_host {
49    name: "BluetoothSMSTestLibrary",
50    pkg_path: "bluetooth_sms_test",
51    srcs: ["bluetooth_sms_base_test.py"],
52    libs: [
53        "mobly",
54        "utilities",
55        "bluetooth_test"
56    ],
57    data: [
58        // Package the snippet with the mobly test
59        ":AutomotiveSnippet",
60        ":PhoneSnippet",
61    ],
62    version: {
63        py3: {
64            embedded_launcher: true,
65        },
66    },
67}