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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 | 151 |
152 # Other waterfalls | 152 # Other waterfalls |
153 B('asan-builder-tests', H(compile_step, | 153 B('asan-builder-tests', H(compile_step, |
154 extra_gyp='asan=1 component=shared_library'), | 154 extra_gyp='asan=1 component=shared_library'), |
155 T(std_tests, ['--asan', '--asan-symbolize'])), | 155 T(std_tests, ['--asan', '--asan-symbolize'])), |
156 B('blink-try-builder', H(compile_step)), | 156 B('blink-try-builder', H(compile_step)), |
157 B('chromedriver-fyi-tests-dbg', H(std_test_steps), | 157 B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
158 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe', | 158 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe', |
159 '--cleanup'])), | 159 '--cleanup'])), |
160 B('fyi-x86-builder-dbg', | 160 B('fyi-x86-builder-dbg', |
161 H(compile_step + std_host_tests, experimental, target_arch='x86')), | 161 H(compile_step + std_host_tests, experimental, target_arch='ia32')), |
162 B('fyi-builder-dbg', | 162 B('fyi-builder-dbg', |
163 H(std_build_steps + std_host_tests, experimental, | 163 H(std_build_steps + std_host_tests, experimental, |
164 extra_gyp='emma_coverage=1')), | 164 extra_gyp='emma_coverage=1')), |
165 B('x86-builder-dbg', | 165 B('x86-builder-dbg', |
166 H(compile_step + std_host_tests, target_arch='x86')), | 166 H(compile_step + std_host_tests, target_arch='ia32')), |
167 B('fyi-builder-rel', H(std_build_steps, experimental)), | 167 B('fyi-builder-rel', H(std_build_steps, experimental)), |
168 B('fyi-tests', H(std_test_steps), | 168 B('fyi-tests', H(std_test_steps), |
169 T(std_tests + chrome_sync_shell_tests, | 169 T(std_tests + chrome_sync_shell_tests, |
170 ['--experimental', flakiness_server, | 170 ['--experimental', flakiness_server, |
171 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET, | 171 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET, |
172 '--cleanup'])), | 172 '--cleanup'])), |
173 B('fyi-component-builder-tests-dbg', | 173 B('fyi-component-builder-tests-dbg', |
174 H(compile_step, extra_gyp='component=shared_library'), | 174 H(compile_step, extra_gyp='component=shared_library'), |
175 T(std_tests, ['--experimental', flakiness_server])), | 175 T(std_tests, ['--experimental', flakiness_server])), |
176 B('gpu-builder-tests-dbg', | 176 B('gpu-builder-tests-dbg', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 for command in commands: | 300 for command in commands: |
301 print 'Will run: ', bb_utils.CommandToString(command) | 301 print 'Will run: ', bb_utils.CommandToString(command) |
302 print | 302 print |
303 | 303 |
304 env = GetEnvironment(bot_config.host_obj, options.testing) | 304 env = GetEnvironment(bot_config.host_obj, options.testing) |
305 return RunBotCommands(options, commands, env) | 305 return RunBotCommands(options, commands, env) |
306 | 306 |
307 | 307 |
308 if __name__ == '__main__': | 308 if __name__ == '__main__': |
309 sys.exit(main(sys.argv)) | 309 sys.exit(main(sys.argv)) |
OLD | NEW |