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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 H(compile_step, extra_gyp='clang=1 component=shared_library')), | 139 H(compile_step, extra_gyp='clang=1 component=shared_library')), |
140 B('main-clobber', H(compile_step)), | 140 B('main-clobber', H(compile_step)), |
141 B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])), | 141 B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])), |
142 | 142 |
143 # Other waterfalls | 143 # Other waterfalls |
144 B('asan-builder-tests', H(compile_step, | 144 B('asan-builder-tests', H(compile_step, |
145 extra_gyp='asan=1 component=shared_library'), | 145 extra_gyp='asan=1 component=shared_library'), |
146 T(std_tests, ['--asan', '--asan-symbolize'])), | 146 T(std_tests, ['--asan', '--asan-symbolize'])), |
147 B('blink-try-builder', H(compile_step)), | 147 B('blink-try-builder', H(compile_step)), |
148 B('chromedriver-fyi-tests-dbg', H(std_test_steps), | 148 B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
149 T(['chromedriver'], ['--install=ChromiumTestShell'])), | 149 T(['chromedriver'], ['--install=ChromeShell'])), |
150 B('fyi-x86-builder-dbg', | 150 B('fyi-x86-builder-dbg', |
151 H(compile_step + std_host_tests, experimental, target_arch='x86')), | 151 H(compile_step + std_host_tests, experimental, target_arch='x86')), |
152 B('fyi-builder-dbg', | 152 B('fyi-builder-dbg', |
153 H(std_build_steps + std_host_tests, experimental, | 153 H(std_build_steps + std_host_tests, experimental, |
154 extra_gyp='emma_coverage=1 android_lint=1')), | 154 extra_gyp='emma_coverage=1 android_lint=1')), |
155 B('x86-builder-dbg', | 155 B('x86-builder-dbg', |
156 H(compile_step + std_host_tests, target_arch='x86')), | 156 H(compile_step + std_host_tests, target_arch='x86')), |
157 B('fyi-builder-rel', H(std_build_steps, experimental)), | 157 B('fyi-builder-rel', H(std_build_steps, experimental)), |
158 B('fyi-tests', H(std_test_steps), | 158 B('fyi-tests', H(std_test_steps), |
159 T(std_tests, ['--experimental', flakiness_server, | 159 T(std_tests, ['--experimental', flakiness_server, |
160 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), | 160 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), |
161 B('fyi-component-builder-tests-dbg', | 161 B('fyi-component-builder-tests-dbg', |
162 H(compile_step, extra_gyp='component=shared_library'), | 162 H(compile_step, extra_gyp='component=shared_library'), |
163 T(std_tests, ['--experimental', flakiness_server])), | 163 T(std_tests, ['--experimental', flakiness_server])), |
164 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])), | 164 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])), |
165 # Pass empty T([]) so that logcat monitor and device status check are run. | 165 # Pass empty T([]) so that logcat monitor and device status check are run. |
166 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])), | 166 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression']), T([])), |
167 B('perf-tests-rel', H(std_test_steps), | 167 B('perf-tests-rel', H(std_test_steps), |
168 T([], ['--install=ChromiumTestShell'])), | 168 T([], ['--install=ChromeShell'])), |
169 B('webkit-latest-webkit-tests', H(std_test_steps), | 169 B('webkit-latest-webkit-tests', H(std_test_steps), |
170 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), | 170 T(['webkit_layout', 'webkit'], ['--auto-reconnect'])), |
171 B('webkit-latest-contentshell', H(compile_step), | 171 B('webkit-latest-contentshell', H(compile_step), |
172 T(['webkit_layout'], ['--auto-reconnect'])), | 172 T(['webkit_layout'], ['--auto-reconnect'])), |
173 B('builder-unit-tests', H(compile_step), T(['unit'])), | 173 B('builder-unit-tests', H(compile_step), T(['unit'])), |
174 B('webrtc-chromium-builder', | 174 B('webrtc-chromium-builder', |
175 H(std_build_steps, | 175 H(std_build_steps, |
176 extra_args=['--build-targets=android_builder_chromium_webrtc'])), | 176 extra_args=['--build-targets=android_builder_chromium_webrtc'])), |
177 B('webrtc-native-builder', | 177 B('webrtc-native-builder', |
178 H(std_build_steps, | 178 H(std_build_steps, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 for command in commands: | 284 for command in commands: |
285 print 'Will run: ', bb_utils.CommandToString(command) | 285 print 'Will run: ', bb_utils.CommandToString(command) |
286 print | 286 print |
287 | 287 |
288 env = GetEnvironment(bot_config.host_obj, options.testing) | 288 env = GetEnvironment(bot_config.host_obj, options.testing) |
289 return RunBotCommands(options, commands, env) | 289 return RunBotCommands(options, commands, env) |
290 | 290 |
291 | 291 |
292 if __name__ == '__main__': | 292 if __name__ == '__main__': |
293 sys.exit(main(sys.argv)) | 293 sys.exit(main(sys.argv)) |
OLD | NEW |