| 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 28 matching lines...) Expand all Loading... |
| 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 # Unmaintained builders on chromium.fyi |
| 46 'ClangToTMac', | 46 'ClangToTMac', |
| 47 'ClangToTMacASan', | 47 'ClangToTMacASan', |
| 48 | 48 |
| 49 # This builder is fine, but win8_chromium_ng uses GN and this configuration, |
| 50 # which breaks everything. |
| 51 'Win8 Aura', |
| 52 |
| 49 # One off builders. Note that Swarming does support ARM. | 53 # One off builders. Note that Swarming does support ARM. |
| 50 'Linux ARM Cross-Compile', | 54 'Linux ARM Cross-Compile', |
| 51 'Site Isolation Linux', | 55 'Site Isolation Linux', |
| 52 'Site Isolation Win', | 56 'Site Isolation Win', |
| 53 } | 57 } |
| 54 | 58 |
| 55 | 59 |
| 56 # TODO(GYP): These targets have not been ported to GN yet. | 60 # TODO(GYP): These targets have not been ported to GN yet. |
| 57 SKIP_NINJA_TO_GN_TARGETS = { | 61 SKIP_NINJA_TO_GN_TARGETS = { |
| 58 'cast_media_unittests', | 62 'cast_media_unittests', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 elif args.mode == 'remaining': | 293 elif args.mode == 'remaining': |
| 290 print_remaining(args.test_name, tests_location) | 294 print_remaining(args.test_name, tests_location) |
| 291 return result | 295 return result |
| 292 except Error as e: | 296 except Error as e: |
| 293 sys.stderr.write('%s\n' % e) | 297 sys.stderr.write('%s\n' % e) |
| 294 return 1 | 298 return 1 |
| 295 | 299 |
| 296 | 300 |
| 297 if __name__ == "__main__": | 301 if __name__ == "__main__": |
| 298 sys.exit(main()) | 302 sys.exit(main()) |
| OLD | NEW |