blob: dd03f283a8c4bd53e142692f691f8be2efc52289 [file] [log] [blame]
Colin Cross4af387c2019-05-16 13:16:29 -07001python_binary_host {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00002 name: "check_boot_jars",
3 main: "check_boot_jars/check_boot_jars.py",
4 srcs: [
5 "check_boot_jars/check_boot_jars.py",
6 ],
7 version: {
8 py2: {
9 enabled: true,
10 },
11 py3: {
12 enabled: false,
13 },
14 },
15}
16
17python_binary_host {
Colin Cross4af387c2019-05-16 13:16:29 -070018 name: "manifest_fixer",
19 main: "manifest_fixer.py",
20 srcs: [
21 "manifest_fixer.py",
22 ],
23 version: {
24 py2: {
25 enabled: true,
26 },
27 py3: {
28 enabled: false,
29 },
30 },
Baligh Uddin3be82c02020-02-19 21:16:31 -080031 libs: [
32 "manifest_utils",
33 ],
Colin Cross4af387c2019-05-16 13:16:29 -070034}
35
36python_test_host {
37 name: "manifest_fixer_test",
38 main: "manifest_fixer_test.py",
39 srcs: [
40 "manifest_fixer_test.py",
41 "manifest_fixer.py",
Baligh Uddin3be82c02020-02-19 21:16:31 -080042 ],
43 version: {
44 py2: {
45 enabled: true,
46 },
47 py3: {
48 enabled: false,
49 },
50 },
51 libs: [
52 "manifest_utils",
53 ],
54 test_suites: ["general-tests"],
55}
56
57python_library_host {
58 name: "manifest_utils",
59 srcs: [
Colin Cross72119102019-05-20 13:14:18 -070060 "manifest.py",
61 ],
62 version: {
63 py2: {
64 enabled: true,
65 },
66 py3: {
67 enabled: false,
68 },
69 },
Colin Cross72119102019-05-20 13:14:18 -070070}
71
72python_binary_host {
73 name: "manifest_check",
74 main: "manifest_check.py",
75 srcs: [
76 "manifest_check.py",
Colin Cross72119102019-05-20 13:14:18 -070077 ],
78 version: {
79 py2: {
80 enabled: true,
81 },
82 py3: {
83 enabled: false,
84 },
85 },
Baligh Uddin3be82c02020-02-19 21:16:31 -080086 libs: [
87 "manifest_utils",
88 ],
Colin Cross72119102019-05-20 13:14:18 -070089}
90
91python_test_host {
92 name: "manifest_check_test",
93 main: "manifest_check_test.py",
94 srcs: [
95 "manifest_check_test.py",
96 "manifest_check.py",
Colin Cross4af387c2019-05-16 13:16:29 -070097 ],
98 version: {
99 py2: {
100 enabled: true,
101 },
102 py3: {
103 enabled: false,
104 },
105 },
Baligh Uddin3be82c02020-02-19 21:16:31 -0800106 libs: [
107 "manifest_utils",
108 ],
Colin Cross4af387c2019-05-16 13:16:29 -0700109 test_suites: ["general-tests"],
110}
Jooyung Han04329f12019-08-01 23:35:08 +0900111
112python_binary_host {
113 name: "jsonmodify",
114 main: "jsonmodify.py",
115 srcs: [
116 "jsonmodify.py",
117 ],
118 version: {
119 py2: {
120 enabled: true,
121 },
122 py3: {
123 enabled: false,
124 },
ThiƩbaud Weksteen5e291c22020-06-26 14:04:00 +0200125 },
Jooyung Han04329f12019-08-01 23:35:08 +0900126}
Jaewoong Junge5cd4e12019-11-22 14:34:55 -0800127
128python_binary_host {
129 name: "test_config_fixer",
130 main: "test_config_fixer.py",
131 srcs: [
132 "test_config_fixer.py",
Jaewoong Junge5cd4e12019-11-22 14:34:55 -0800133 ],
134 version: {
135 py2: {
136 enabled: true,
137 },
138 py3: {
139 enabled: false,
140 },
141 },
Baligh Uddin3be82c02020-02-19 21:16:31 -0800142 libs: [
143 "manifest_utils",
144 ],
Jaewoong Junge5cd4e12019-11-22 14:34:55 -0800145}
146
147python_test_host {
148 name: "test_config_fixer_test",
149 main: "test_config_fixer_test.py",
150 srcs: [
151 "test_config_fixer_test.py",
152 "test_config_fixer.py",
Jaewoong Junge5cd4e12019-11-22 14:34:55 -0800153 ],
154 version: {
155 py2: {
156 enabled: true,
157 },
158 py3: {
159 enabled: false,
160 },
161 },
Baligh Uddin3be82c02020-02-19 21:16:31 -0800162 libs: [
163 "manifest_utils",
164 ],
Jaewoong Junge5cd4e12019-11-22 14:34:55 -0800165 test_suites: ["general-tests"],
Baligh Uddin3be82c02020-02-19 21:16:31 -0800166}
Colin Cross014489c2020-06-02 20:09:13 -0700167
168python_binary_host {
Ulya Trafimovich5f364b62020-06-30 12:39:01 +0100169 name: "construct_context",
170 main: "construct_context.py",
171 srcs: [
172 "construct_context.py",
173 ],
174 version: {
175 py2: {
176 enabled: true,
177 },
178 py3: {
179 enabled: false,
180 },
181 },
182 libs: [
183 "manifest_utils",
184 ],
185}
186
187python_test_host {
188 name: "construct_context_test",
189 main: "construct_context_test.py",
190 srcs: [
191 "construct_context_test.py",
192 "construct_context.py",
193 ],
194 version: {
195 py2: {
196 enabled: true,
197 },
198 py3: {
199 enabled: false,
200 },
201 },
202 libs: [
203 "manifest_utils",
204 ],
205 test_suites: ["general-tests"],
206}
207
208python_binary_host {
Colin Cross014489c2020-06-02 20:09:13 -0700209 name: "lint-project-xml",
210 main: "lint-project-xml.py",
Colin Cross9b1aa0c2020-06-25 17:12:28 -0700211 srcs: [
212 "lint-project-xml.py",
213 "ninja_rsp.py",
214 ],
215}
216
217python_binary_host {
218 name: "gen-kotlin-build-file.py",
219 main: "gen-kotlin-build-file.py",
220 srcs: [
221 "gen-kotlin-build-file.py",
222 "ninja_rsp.py",
223 ],
Colin Cross014489c2020-06-02 20:09:13 -0700224}
Kiyoung Kim62abd122020-10-06 17:16:44 +0900225
226python_binary_host {
227 name: "conv_linker_config",
228 srcs: [
229 "conv_linker_config.py",
230 ],
231 version: {
232 py2: {
233 enabled: false,
234 },
235 py3: {
236 enabled: true,
237 embedded_launcher: true,
238 },
239 },
240 libs: [
241 "linker_config_proto",
242 ],
243}