OLD | NEW |
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 Loading... |
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', H(compile_step), T(['gpu'])), | 167 B('gpu-builder-tests-dbg', |
| 168 H(compile_step), |
| 169 T(['gpu'], ['--install=ContentShell'])), |
168 # Pass empty T([]) so that logcat monitor and device status check are run. | 170 # Pass empty T([]) so that logcat monitor and device status check are run. |
169 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])), | 171 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])), |
170 B('perf-tests-rel', H(std_test_steps), | 172 B('perf-tests-rel', H(std_test_steps), |
171 T([], ['--install=ChromeShell'])), | 173 T([], ['--install=ChromeShell'])), |
172 B('webkit-latest-webkit-tests', H(std_test_steps), | 174 B('webkit-latest-webkit-tests', H(std_test_steps), |
173 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), | 175 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), |
174 B('webkit-latest-contentshell', H(compile_step), | 176 B('webkit-latest-contentshell', H(compile_step), |
175 T(['webkit_layout'], ['--auto-reconnect'])), | 177 T(['webkit_layout'], ['--auto-reconnect'])), |
176 B('builder-unit-tests', H(compile_step), T(['unit'])), | 178 B('builder-unit-tests', H(compile_step), T(['unit'])), |
177 B('webrtc-chromium-builder', | 179 B('webrtc-chromium-builder', |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 for command in commands: | 290 for command in commands: |
289 print 'Will run: ', bb_utils.CommandToString(command) | 291 print 'Will run: ', bb_utils.CommandToString(command) |
290 print | 292 print |
291 | 293 |
292 env = GetEnvironment(bot_config.host_obj, options.testing) | 294 env = GetEnvironment(bot_config.host_obj, options.testing) |
293 return RunBotCommands(options, commands, env) | 295 return RunBotCommands(options, commands, env) |
294 | 296 |
295 | 297 |
296 if __name__ == '__main__': | 298 if __name__ == '__main__': |
297 sys.exit(main(sys.argv)) | 299 sys.exit(main(sys.argv)) |
OLD | NEW |