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 B('asan-builder-tests', H(compile_step, | 151 B('asan-builder-tests', H(compile_step, |
152 extra_gyp='asan=1 component=shared_library'), | 152 extra_gyp='asan=1 component=shared_library'), |
153 T(std_tests, ['--asan', '--asan-symbolize'])), | 153 T(std_tests, ['--asan', '--asan-symbolize'])), |
154 B('blink-try-builder', H(compile_step)), | 154 B('blink-try-builder', H(compile_step)), |
155 B('chromedriver-fyi-tests-dbg', H(std_test_steps), | 155 B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
156 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe'])), | 156 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe'])), |
157 B('fyi-x86-builder-dbg', | 157 B('fyi-x86-builder-dbg', |
158 H(compile_step + std_host_tests, experimental, target_arch='x86')), | 158 H(compile_step + std_host_tests, experimental, target_arch='x86')), |
159 B('fyi-builder-dbg', | 159 B('fyi-builder-dbg', |
160 H(std_build_steps + std_host_tests, experimental, | 160 H(std_build_steps + std_host_tests, experimental, |
161 extra_gyp='emma_coverage=1')), | 161 extra_gyp='emma_coverage=1 android_lint=1')), |
162 B('x86-builder-dbg', | 162 B('x86-builder-dbg', |
163 H(compile_step + std_host_tests, target_arch='x86')), | 163 H(compile_step + std_host_tests, target_arch='x86')), |
164 B('fyi-builder-rel', H(std_build_steps, experimental)), | 164 B('fyi-builder-rel', H(std_build_steps, experimental)), |
165 B('fyi-tests', H(std_test_steps), | 165 B('fyi-tests', H(std_test_steps), |
166 T(std_tests, ['--experimental', flakiness_server, | 166 T(std_tests, ['--experimental', flakiness_server, |
167 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), | 167 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), |
168 B('fyi-component-builder-tests-dbg', | 168 B('fyi-component-builder-tests-dbg', |
169 H(compile_step, extra_gyp='component=shared_library'), | 169 H(compile_step, extra_gyp='component=shared_library'), |
170 T(std_tests, ['--experimental', flakiness_server])), | 170 T(std_tests, ['--experimental', flakiness_server])), |
171 B('gpu-builder-tests-dbg', | 171 B('gpu-builder-tests-dbg', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 for command in commands: | 307 for command in commands: |
308 print 'Will run: ', bb_utils.CommandToString(command) | 308 print 'Will run: ', bb_utils.CommandToString(command) |
309 print | 309 print |
310 | 310 |
311 env = GetEnvironment(bot_config.host_obj, options.testing) | 311 env = GetEnvironment(bot_config.host_obj, options.testing) |
312 return RunBotCommands(options, commands, env) | 312 return RunBotCommands(options, commands, env) |
313 | 313 |
314 | 314 |
315 if __name__ == '__main__': | 315 if __name__ == '__main__': |
316 sys.exit(main(sys.argv)) | 316 sys.exit(main(sys.argv)) |
OLD | NEW |