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' : {}, |
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 1504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1651 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) | 1652 json.dump(tests, fp, indent=2, separators=(',', ': '), sort_keys=True) |
1652 fp.write('\n') | 1653 fp.write('\n') |
1653 | 1654 |
1654 def main(): | 1655 def main(): |
1655 generate_all_tests(FYI_WATERFALL, True) | 1656 generate_all_tests(FYI_WATERFALL, True) |
1656 generate_all_tests(WATERFALL, False) | 1657 generate_all_tests(WATERFALL, False) |
1657 return 0 | 1658 return 0 |
1658 | 1659 |
1659 if __name__ == "__main__": | 1660 if __name__ == "__main__": |
1660 sys.exit(main()) | 1661 sys.exit(main()) |
OLD | NEW |