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

Side by Side Diff: build/android/buildbot/bb_run_bot.py

Issue 15448002: Android / Telemetry: use android-chromium-testshell instead of content-shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 # 2 #
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 import collections 7 import collections
8 import copy 8 import copy
9 import json 9 import json
10 import os 10 import os
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 H(std_build_steps + std_host_tests, ['--experimental'])), 135 H(std_build_steps + std_host_tests, ['--experimental'])),
136 B('fyi-builder-rel', H(std_build_steps, ['--experimental'])), 136 B('fyi-builder-rel', H(std_build_steps, ['--experimental'])),
137 B('fyi-tests-dbg-ics-gn', H(compile_step, [ '--experimental']), 137 B('fyi-tests-dbg-ics-gn', H(compile_step, [ '--experimental']),
138 T(std_tests, ['--experimental', flakiness_server])), 138 T(std_tests, ['--experimental', flakiness_server])),
139 B('fyi-tests', H(std_test_steps), 139 B('fyi-tests', H(std_test_steps),
140 T(std_tests, ['--experimental', flakiness_server])), 140 T(std_tests, ['--experimental', flakiness_server])),
141 B('fyi-component-builder-tests-dbg', 141 B('fyi-component-builder-tests-dbg',
142 H(compile_step, extra_gyp='component=shared_library'), 142 H(compile_step, extra_gyp='component=shared_library'),
143 T(std_tests, ['--experimental', flakiness_server])), 143 T(std_tests, ['--experimental', flakiness_server])),
144 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), 144 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])),
145 B('perf-tests-rel', H(std_test_steps), T([], ['--install=ContentShell'])), 145 B('perf-tests-rel', H(std_test_steps),
146 T([], ['--install=ChromiumTestShell'])),
146 B('webkit-latest-webkit-tests', H(std_test_steps), 147 B('webkit-latest-webkit-tests', H(std_test_steps),
147 T(['webkit_layout', 'webkit'])), 148 T(['webkit_layout', 'webkit'])),
148 B('webkit-latest-contentshell', H(compile_step), T(['webkit_layout'])), 149 B('webkit-latest-contentshell', H(compile_step), T(['webkit_layout'])),
149 B('builder-unit-tests', H(compile_step), T(['unit'])), 150 B('builder-unit-tests', H(compile_step), T(['unit'])),
150 151
151 # Generic builder config (for substring match). 152 # Generic builder config (for substring match).
152 B('builder', H(std_build_steps)), 153 B('builder', H(std_build_steps)),
153 ] 154 ]
154 155
155 bot_map = dict((config.bot_id, config) for config in bot_configs) 156 bot_map = dict((config.bot_id, config) for config in bot_configs)
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 sys.stdout.flush() 226 sys.stdout.flush()
226 if options.testing: 227 if options.testing:
227 env['BUILDBOT_TESTING'] = '1' 228 env['BUILDBOT_TESTING'] = '1'
228 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env) 229 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env)
229 if return_code != 0: 230 if return_code != 0:
230 return return_code 231 return return_code
231 232
232 233
233 if __name__ == '__main__': 234 if __name__ == '__main__':
234 sys.exit(main(sys.argv)) 235 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698