• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    device_common_data: [
10        // Package the snippet with the mobly test
11        ":AutomotiveSnippet",
12        ":PhoneSnippet",
13    ],
14}
15
16python_test_host {
17    name: "BluetoothSMSBaseTest",
18    main: "bluetooth_sms_base_test.py",
19    srcs: ["bluetooth_sms_base_test.py"],
20    libs: [
21        "mobly",
22        "utilities",
23        "bluetooth_test",
24    ],
25    test_suites: [
26        "catbox",
27    ],
28    test_options: {
29        unit_test: false,
30    },
31    device_common_data: [
32        // Package the snippet with the mobly test
33        ":AutomotiveSnippet",
34        ":PhoneSnippet",
35    ],
36}
37
38python_library_host {
39    name: "BluetoothSMSTestLibrary",
40    pkg_path: "bluetooth_sms_test",
41    srcs: ["bluetooth_sms_base_test.py"],
42    libs: [
43        "mobly",
44        "utilities",
45        "bluetooth_test",
46    ],
47    device_common_data: [
48        // Package the snippet with the mobly test
49        ":AutomotiveSnippet",
50        ":PhoneSnippet",
51    ],
52}
53