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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 extra_gyp='emma_coverage=1')), | 152 extra_gyp='emma_coverage=1')), |
153 B('x86-builder-dbg', | 153 B('x86-builder-dbg', |
154 H(compile_step + std_host_tests, target_arch='x86')), | 154 H(compile_step + std_host_tests, target_arch='x86')), |
155 B('fyi-builder-rel', H(std_build_steps, experimental)), | 155 B('fyi-builder-rel', H(std_build_steps, experimental)), |
156 B('fyi-tests', H(std_test_steps), | 156 B('fyi-tests', H(std_test_steps), |
157 T(std_tests, ['--experimental', flakiness_server, | 157 T(std_tests, ['--experimental', flakiness_server, |
158 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), | 158 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), |
159 B('fyi-component-builder-tests-dbg', | 159 B('fyi-component-builder-tests-dbg', |
160 H(compile_step, extra_gyp='component=shared_library'), | 160 H(compile_step, extra_gyp='component=shared_library'), |
161 T(std_tests, ['--experimental', flakiness_server])), | 161 T(std_tests, ['--experimental', flakiness_server])), |
| 162 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])), |
162 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), | 163 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), |
163 B('perf-tests-rel', H(std_test_steps), | 164 B('perf-tests-rel', H(std_test_steps), |
164 T([], ['--install=ChromiumTestShell'])), | 165 T([], ['--install=ChromiumTestShell'])), |
165 B('webkit-latest-webkit-tests', H(std_test_steps), | 166 B('webkit-latest-webkit-tests', H(std_test_steps), |
166 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), | 167 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), |
167 B('webkit-latest-contentshell', H(compile_step), | 168 B('webkit-latest-contentshell', H(compile_step), |
168 T(['webkit_layout'], ['--auto-reconnect'])), | 169 T(['webkit_layout'], ['--auto-reconnect'])), |
169 B('builder-unit-tests', H(compile_step), T(['unit'])), | 170 B('builder-unit-tests', H(compile_step), T(['unit'])), |
170 B('webrtc-builder', | 171 B('webrtc-builder', |
171 H(std_build_steps, | 172 H(std_build_steps, |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 for command in commands: | 275 for command in commands: |
275 print 'Will run: ', bb_utils.CommandToString(command) | 276 print 'Will run: ', bb_utils.CommandToString(command) |
276 print | 277 print |
277 | 278 |
278 env = GetEnvironment(bot_config.host_obj, options.testing) | 279 env = GetEnvironment(bot_config.host_obj, options.testing) |
279 return RunBotCommands(options, commands, env) | 280 return RunBotCommands(options, commands, env) |
280 | 281 |
281 | 282 |
282 if __name__ == '__main__': | 283 if __name__ == '__main__': |
283 sys.exit(main(sys.argv)) | 284 sys.exit(main(sys.argv)) |
OLD | NEW |