| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 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 """Toolbox to manage all the json files in this directory. | 6 """Toolbox to manage all the json files in this directory. |
| 7 | 7 |
| 8 It can reformat them in their canonical format or ensures they are well | 8 It can reformat them in their canonical format or ensures they are well |
| 9 formatted. | 9 formatted. |
| 10 """ | 10 """ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 # http://crbug.com/472205 | 35 # http://crbug.com/472205 |
| 36 'Chromium Mac 10.10', | 36 'Chromium Mac 10.10', |
| 37 # http://crbug.com/441429 | 37 # http://crbug.com/441429 |
| 38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', | 38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', |
| 39 | 39 |
| 40 # http://crbug.com/480053 | 40 # http://crbug.com/480053 |
| 41 'Linux GN', | 41 'Linux GN', |
| 42 'Linux GN (dbg)', | 42 'Linux GN (dbg)', |
| 43 'linux_chromium_gn_rel', | 43 'linux_chromium_gn_rel', |
| 44 | 44 |
| 45 # Unmaintained builders on chromium.fyi | 45 # Clang builders want to build everything, the current hack is to use |
| 46 # add_tests_as_compile_targets=False which interfere with isolated testing. |
| 47 # Blocked by http://crbug.com/503241. |
| 48 'ClangToTLinux tester', |
| 49 'ClangToTLinuxASan tester', |
| 50 'ClangToTMac tester', |
| 46 'ClangToTMac', | 51 'ClangToTMac', |
| 52 'ClangToTMacASan tester', |
| 47 'ClangToTMacASan', | 53 'ClangToTMacASan', |
| 54 'ClangToTWin tester', |
| 55 'ClangToTWin(dbg) tester', |
| 56 'ClangToTWin(dll) tester', |
| 57 'ClangToTWin64 tester', |
| 58 'ClangToTWin64(dbg) tester', |
| 59 'ClangToTWin64(dll) tester', |
| 60 'CrWinClang tester', |
| 61 'CrWinClang(dbg) tester', |
| 62 'CrWinClang(shared) tester', |
| 63 'CrWinClang64 tester', |
| 64 'CrWinClang64(dbg) tester', |
| 65 'CrWinClang64(dll) tester', |
| 66 'CrWinClangLLD tester', |
| 67 |
| 48 | 68 |
| 49 # This builder is fine, but win8_chromium_ng uses GN and this configuration, | 69 # This builder is fine, but win8_chromium_ng uses GN and this configuration, |
| 50 # which breaks everything. | 70 # which breaks everything. |
| 51 'Win8 Aura', | 71 'Win8 Aura', |
| 52 | 72 |
| 53 # One off builders. Note that Swarming does support ARM. | 73 # One off builders. Note that Swarming does support ARM. |
| 54 'Linux ARM Cross-Compile', | 74 'Linux ARM Cross-Compile', |
| 55 'Site Isolation Linux', | 75 'Site Isolation Linux', |
| 56 'Site Isolation Win', | 76 'Site Isolation Win', |
| 57 } | 77 } |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 elif args.mode == 'remaining': | 313 elif args.mode == 'remaining': |
| 294 print_remaining(args.test_name, tests_location) | 314 print_remaining(args.test_name, tests_location) |
| 295 return result | 315 return result |
| 296 except Error as e: | 316 except Error as e: |
| 297 sys.stderr.write('%s\n' % e) | 317 sys.stderr.write('%s\n' % e) |
| 298 return 1 | 318 return 1 |
| 299 | 319 |
| 300 | 320 |
| 301 if __name__ == "__main__": | 321 if __name__ == "__main__": |
| 302 sys.exit(main()) | 322 sys.exit(main()) |
| OLD | NEW |