• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_team: "trendy_team_aaos_framework",
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6python_test_host {
7    name: "FlashTest",
8    main: "flash.py",
9    srcs: [
10        "flash.py",
11        "devices/*.py",
12    ],
13    libs: [
14        "mobly",
15        "utilities",
16    ],
17    test_suites: ["catbox"],
18    test_options: {
19        unit_test: false,
20    },
21    data: [
22        "device.yaml",
23    ],
24    version: {
25        py3: {
26            embedded_launcher: true,
27        },
28    },
29}
30
31python_test_host {
32    name: "RebootTest",
33    main: "reboot.py",
34    srcs: ["reboot.py"],
35    libs: [
36        "mobly",
37        "utilities",
38    ],
39    test_suites: ["catbox"],
40    test_options: {
41        unit_test: false,
42    },
43    data: [
44        "device.yaml",
45    ],
46    version: {
47        py3: {
48            embedded_launcher: true,
49        },
50    },
51}
52
53python_test_host {
54    name: "FastbootWipeTest",
55    main: "fastboot_wipe.py",
56    srcs: ["fastboot_wipe.py"],
57    libs: [
58        "mobly",
59        "utilities",
60    ],
61    test_suites: ["catbox"],
62    test_options: {
63        unit_test: false,
64    },
65    data: [
66        "device.yaml",
67    ],
68    version: {
69        py3: {
70            embedded_launcher: true,
71        },
72    },
73}
74
75python_test_host {
76    name: "WifiTest",
77    main: "wifi.py",
78    srcs: ["wifi.py"],
79    libs: [
80        "mobly",
81        "utilities",
82    ],
83    test_suites: ["catbox"],
84    test_options: {
85        unit_test: false,
86    },
87    data: [
88        "device.yaml",
89    ],
90    version: {
91        py3: {
92            embedded_launcher: true,
93        },
94    },
95}
96
97python_test_host {
98    name: "BluetoothTest",
99    main: "bluetooth.py",
100    srcs: ["bluetooth.py"],
101    libs: [
102        "mobly",
103        "utilities",
104    ],
105    test_suites: ["catbox"],
106    test_options: {
107        unit_test: false,
108    },
109    data: [
110        "device.yaml",
111    ],
112    version: {
113        py3: {
114            embedded_launcher: true,
115        },
116    },
117}
118
119python_test_host {
120    name: "LocationTest",
121    main: "location.py",
122    srcs: ["location.py"],
123    libs: [
124        "mobly",
125        "utilities",
126    ],
127    test_suites: ["catbox"],
128    test_options: {
129        unit_test: false,
130    },
131    data: [
132        "device.yaml",
133    ],
134    version: {
135        py3: {
136            embedded_launcher: true,
137        },
138    },
139}
140
141python_test_host {
142    name: "VhalTest",
143    main: "vhal.py",
144    srcs: ["vhal.py"],
145    libs: [
146        "mobly",
147        "utilities",
148    ],
149    test_suites: ["catbox"],
150    test_options: {
151        unit_test: false,
152    },
153    data: [
154        "device.yaml",
155    ],
156    version: {
157        py3: {
158            embedded_launcher: true,
159        },
160    },
161}
162