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

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

Issue 43463004: Add target for building Chromium tests for WebRTC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « build/all_android.gyp ('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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), 164 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])),
165 B('perf-tests-rel', H(std_test_steps), 165 B('perf-tests-rel', H(std_test_steps),
166 T([], ['--install=ChromiumTestShell'])), 166 T([], ['--install=ChromiumTestShell'])),
167 B('webkit-latest-webkit-tests', H(std_test_steps), 167 B('webkit-latest-webkit-tests', H(std_test_steps),
168 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), 168 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])),
169 B('webkit-latest-contentshell', H(compile_step), 169 B('webkit-latest-contentshell', H(compile_step),
170 T(['webkit_layout'], ['--auto-reconnect'])), 170 T(['webkit_layout'], ['--auto-reconnect'])),
171 B('builder-unit-tests', H(compile_step), T(['unit'])), 171 B('builder-unit-tests', H(compile_step), T(['unit'])),
172 B('webrtc-chromium-builder', 172 B('webrtc-chromium-builder',
173 H(std_build_steps, 173 H(std_build_steps,
174 extra_args=['--build-targets=content_browsertests_apk'])), 174 extra_args=['--build-targets=android_builder_chromium_webrtc'])),
175 B('webrtc-native-builder', 175 B('webrtc-native-builder',
176 H(std_build_steps, 176 H(std_build_steps,
177 extra_args=['--build-targets=android_builder_webrtc'], 177 extra_args=['--build-targets=android_builder_webrtc'],
178 extra_gyp='include_tests=1 enable_tracing=1')), 178 extra_gyp='include_tests=1 enable_tracing=1')),
179 B('webrtc-chromium-tests', H(std_test_steps), 179 B('webrtc-chromium-tests', H(std_test_steps),
180 T(['webrtc_chromium'], [flakiness_server])), 180 T(['webrtc_chromium'], [flakiness_server])),
181 B('webrtc-native-tests', 181 B('webrtc-native-tests',
182 H(['download_webrtc_resources'] + std_test_steps), 182 H(['download_webrtc_resources'] + std_test_steps),
183 T(['webrtc_native'], [flakiness_server])), 183 T(['webrtc_native'], [flakiness_server])),
184 184
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 for command in commands: 282 for command in commands:
283 print 'Will run: ', bb_utils.CommandToString(command) 283 print 'Will run: ', bb_utils.CommandToString(command)
284 print 284 print
285 285
286 env = GetEnvironment(bot_config.host_obj, options.testing) 286 env = GetEnvironment(bot_config.host_obj, options.testing)
287 return RunBotCommands(options, commands, env) 287 return RunBotCommands(options, commands, env)
288 288
289 289
290 if __name__ == '__main__': 290 if __name__ == '__main__':
291 sys.exit(main(sys.argv)) 291 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/all_android.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698