OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2016 The Chromium Authors. All rights reserved. | 2 # Copyright 2016 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in | 6 """Script to generate chromium.gpu.json and chromium.gpu.fyi.json in |
7 the src/testing/buildbot directory. Maintaining these files by hand is | 7 the src/testing/buildbot directory. Maintaining these files by hand is |
8 too unwieldy. | 8 too unwieldy. |
9 """ | 9 """ |
10 | 10 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
127 'GPU Win Builder (dbg)' : {}, | 127 'GPU Win Builder (dbg)' : {}, |
128 'GPU Win x64 Builder' : {}, | 128 'GPU Win x64 Builder' : {}, |
129 'GPU Win x64 Builder (dbg)' : {}, | 129 'GPU Win x64 Builder (dbg)' : {}, |
130 'GPU Mac Builder' : {}, | 130 'GPU Mac Builder' : {}, |
131 'GPU Mac Builder (dbg)' : {}, | 131 'GPU Mac Builder (dbg)' : {}, |
132 'GPU Linux Builder' : {}, | 132 'GPU Linux Builder' : {}, |
133 'GPU Linux Builder (dbg)' : {}, | 133 'GPU Linux Builder (dbg)' : {}, |
134 'Linux ChromiumOS Builder' : { | 134 'Linux ChromiumOS Builder' : { |
135 'additional_compile_targets' : [ "All" ] | 135 'additional_compile_targets' : [ "All" ] |
136 }, | 136 }, |
137 'Linux ChromiumOS Ozone Builder' : {}, | |
Ken Russell (switch to Gerrit)
2016/12/07 22:27:10
Do you want the additional_compile_targets from th
fjhenigman
2016/12/09 04:38:45
Dunno - not sure why that bot needs it. Perhaps b
| |
137 }, | 138 }, |
138 | 139 |
139 'testers': { | 140 'testers': { |
140 'Win7 Release (NVIDIA)': { | 141 'Win7 Release (NVIDIA)': { |
141 'swarming_dimensions': [ | 142 'swarming_dimensions': [ |
142 { | 143 { |
143 'gpu': '10de:104a', | 144 'gpu': '10de:104a', |
144 'os': 'Windows-2008ServerR2-SP1' | 145 'os': 'Windows-2008ServerR2-SP1' |
145 }, | 146 }, |
146 ], | 147 ], |
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1593 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1594 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
1594 fp.write('\n') | 1595 fp.write('\n') |
1595 | 1596 |
1596 def main(): | 1597 def main(): |
1597 generate_all_tests(FYI_WATERFALL, True) | 1598 generate_all_tests(FYI_WATERFALL, True) |
1598 generate_all_tests(WATERFALL, False) | 1599 generate_all_tests(WATERFALL, False) |
1599 return 0 | 1600 return 0 |
1600 | 1601 |
1601 if __name__ == "__main__": | 1602 if __name__ == "__main__": |
1602 sys.exit(main()) | 1603 sys.exit(main()) |
OLD | NEW |