blob: 31f59227d255e1afdaa681b76f5f5cd8c4e3f55e [file] [log] [blame]
Colin Cross4af387c2019-05-16 13:16:29 -07001python_binary_host {
2 name: "manifest_fixer",
3 main: "manifest_fixer.py",
4 srcs: [
5 "manifest_fixer.py",
Colin Cross72119102019-05-20 13:14:18 -07006 "manifest.py",
Colin Cross4af387c2019-05-16 13:16:29 -07007 ],
8 version: {
9 py2: {
10 enabled: true,
11 },
12 py3: {
13 enabled: false,
14 },
15 },
16}
17
18python_test_host {
19 name: "manifest_fixer_test",
20 main: "manifest_fixer_test.py",
21 srcs: [
22 "manifest_fixer_test.py",
23 "manifest_fixer.py",
Colin Cross72119102019-05-20 13:14:18 -070024 "manifest.py",
25 ],
26 version: {
27 py2: {
28 enabled: true,
29 },
30 py3: {
31 enabled: false,
32 },
33 },
34 test_suites: ["general-tests"],
35}
36
37python_binary_host {
38 name: "manifest_check",
39 main: "manifest_check.py",
40 srcs: [
41 "manifest_check.py",
42 "manifest.py",
43 ],
44 version: {
45 py2: {
46 enabled: true,
47 },
48 py3: {
49 enabled: false,
50 },
51 },
52}
53
54python_test_host {
55 name: "manifest_check_test",
56 main: "manifest_check_test.py",
57 srcs: [
58 "manifest_check_test.py",
59 "manifest_check.py",
60 "manifest.py",
Colin Cross4af387c2019-05-16 13:16:29 -070061 ],
62 version: {
63 py2: {
64 enabled: true,
65 },
66 py3: {
67 enabled: false,
68 },
69 },
70 test_suites: ["general-tests"],
71}