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

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

Issue 305863002: Revert 273386 "Add gpu-rasterization test to Android gpu testbot." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 | « trunk/src/build/android/buildbot/bb_device_steps.py ('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 # 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 extra_gyp='emma_coverage=1 android_lint=1')), 157 extra_gyp='emma_coverage=1 android_lint=1')),
158 B('x86-builder-dbg', 158 B('x86-builder-dbg',
159 H(compile_step + std_host_tests, target_arch='x86')), 159 H(compile_step + std_host_tests, target_arch='x86')),
160 B('fyi-builder-rel', H(std_build_steps, experimental)), 160 B('fyi-builder-rel', H(std_build_steps, experimental)),
161 B('fyi-tests', H(std_test_steps), 161 B('fyi-tests', H(std_test_steps),
162 T(std_tests, ['--experimental', flakiness_server, 162 T(std_tests, ['--experimental', flakiness_server,
163 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), 163 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])),
164 B('fyi-component-builder-tests-dbg', 164 B('fyi-component-builder-tests-dbg',
165 H(compile_step, extra_gyp='component=shared_library'), 165 H(compile_step, extra_gyp='component=shared_library'),
166 T(std_tests, ['--experimental', flakiness_server])), 166 T(std_tests, ['--experimental', flakiness_server])),
167 B('gpu-builder-tests-dbg', 167 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])),
168 H(compile_step),
169 T(['gpu'], ['--install=ContentShell'])),
170 # Pass empty T([]) so that logcat monitor and device status check are run. 168 # Pass empty T([]) so that logcat monitor and device status check are run.
171 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])), 169 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])),
172 B('perf-tests-rel', H(std_test_steps), 170 B('perf-tests-rel', H(std_test_steps),
173 T([], ['--install=ChromeShell'])), 171 T([], ['--install=ChromeShell'])),
174 B('webkit-latest-webkit-tests', H(std_test_steps), 172 B('webkit-latest-webkit-tests', H(std_test_steps),
175 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), 173 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])),
176 B('webkit-latest-contentshell', H(compile_step), 174 B('webkit-latest-contentshell', H(compile_step),
177 T(['webkit_layout'], ['--auto-reconnect'])), 175 T(['webkit_layout'], ['--auto-reconnect'])),
178 B('builder-unit-tests', H(compile_step), T(['unit'])), 176 B('builder-unit-tests', H(compile_step), T(['unit'])),
179 B('webrtc-chromium-builder', 177 B('webrtc-chromium-builder',
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 for command in commands: 288 for command in commands:
291 print 'Will run: ', bb_utils.CommandToString(command) 289 print 'Will run: ', bb_utils.CommandToString(command)
292 print 290 print
293 291
294 env = GetEnvironment(bot_config.host_obj, options.testing) 292 env = GetEnvironment(bot_config.host_obj, options.testing)
295 return RunBotCommands(options, commands, env) 293 return RunBotCommands(options, commands, env)
296 294
297 295
298 if __name__ == '__main__': 296 if __name__ == '__main__':
299 sys.exit(main(sys.argv)) 297 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « trunk/src/build/android/buildbot/bb_device_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698