Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1529)

Side by Side Diff: testing/buildbot/manage.py

Issue 2587123002: Build //ios:all and its dependencies on the iOS builders. (Closed)
Patch Set: Address comments & add mapping to testing/buildbot/gn_isolate_map.pyl. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'chromiumos_preflight', 150 'chromiumos_preflight',
151 'ios_chrome_unittests', 151 'ios_chrome_unittests',
152 'ios_net_unittests', 152 'ios_net_unittests',
153 'ios_web_inttests', 153 'ios_web_inttests',
154 'ios_web_unittests', 154 'ios_web_unittests',
155 'mini_installer', 155 'mini_installer',
156 'next_version_mini_installer', 156 'next_version_mini_installer',
157 157
158 # this is used at least on iOS 158 # this is used at least on iOS
159 'gn_all', 159 'gn_all',
160 'ios:all',
160 'cronet_test', 161 'cronet_test',
161 162
162 # These are listed in Builders that are skipped for other reasons. 163 # These are listed in Builders that are skipped for other reasons.
163 'chrome_junit_tests', 164 'chrome_junit_tests',
164 'components_invalidation_impl_junit_tests', 165 'components_invalidation_impl_junit_tests',
165 'components_policy_junit_tests', 166 'components_policy_junit_tests',
166 'components_web_restrictions_junit_tests', 167 'components_web_restrictions_junit_tests',
167 'content_junit_tests', 168 'content_junit_tests',
168 'content_junit_tests', 169 'content_junit_tests',
169 'junit_unit_tests', 170 'junit_unit_tests',
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 elif args.mode == 'remaining': 479 elif args.mode == 'remaining':
479 print_remaining(args.test_name, tests_location) 480 print_remaining(args.test_name, tests_location)
480 return result 481 return result
481 except Error as e: 482 except Error as e:
482 sys.stderr.write('%s\n' % e) 483 sys.stderr.write('%s\n' % e)
483 return 1 484 return 1
484 485
485 486
486 if __name__ == "__main__": 487 if __name__ == "__main__":
487 sys.exit(main()) 488 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698