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

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

Issue 2455463002: Remove references to DrMemory from chromium repo. (Closed)
Patch Set: Buildbot Created 4 years, 1 month 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') | third_party/re2/BUILD.gn » ('j') | 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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())
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | third_party/re2/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698