| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 'all', | 137 'all', |
| 138 | 138 |
| 139 # These targets are listed only in build-side recipes. | 139 # These targets are listed only in build-side recipes. |
| 140 'All_syzygy', | 140 'All_syzygy', |
| 141 'aura_builder', | 141 'aura_builder', |
| 142 'blink_tests', | 142 'blink_tests', |
| 143 'cast_shell', | 143 'cast_shell', |
| 144 'cast_shell_apk', | 144 'cast_shell_apk', |
| 145 'chrome_official_builder_no_unittests', | 145 'chrome_official_builder_no_unittests', |
| 146 'chromium_builder_asan', | 146 'chromium_builder_asan', |
| 147 'chromium_builder_dbg_drmemory_win', | |
| 148 'chromium_builder_lkgr_drmemory_win', | |
| 149 'chromium_builder_perf', | 147 'chromium_builder_perf', |
| 150 'chromium_builder_tests', | 148 'chromium_builder_tests', |
| 151 'chromium_swarm_tests', | 149 'chromium_swarm_tests', |
| 152 'chromiumos_preflight', | 150 'chromiumos_preflight', |
| 153 'ios_chrome_unittests', | 151 'ios_chrome_unittests', |
| 154 'ios_net_unittests', | 152 'ios_net_unittests', |
| 155 'ios_web_inttests', | 153 'ios_web_inttests', |
| 156 'ios_web_unittests', | 154 'ios_web_unittests', |
| 157 'mini_installer', | 155 'mini_installer', |
| 158 'next_version_mini_installer', | 156 'next_version_mini_installer', |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 elif args.mode == 'remaining': | 472 elif args.mode == 'remaining': |
| 475 print_remaining(args.test_name, tests_location) | 473 print_remaining(args.test_name, tests_location) |
| 476 return result | 474 return result |
| 477 except Error as e: | 475 except Error as e: |
| 478 sys.stderr.write('%s\n' % e) | 476 sys.stderr.write('%s\n' % e) |
| 479 return 1 | 477 return 1 |
| 480 | 478 |
| 481 | 479 |
| 482 if __name__ == "__main__": | 480 if __name__ == "__main__": |
| 483 sys.exit(main()) | 481 sys.exit(main()) |
| OLD | NEW |