| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 B('main-builder-dbg', H(std_build_steps + std_host_tests)), | 136 B('main-builder-dbg', H(std_build_steps + std_host_tests)), |
| 137 B('main-builder-rel', H(std_build_steps)), | 137 B('main-builder-rel', H(std_build_steps)), |
| 138 B('main-clang-builder', | 138 B('main-clang-builder', |
| 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, extra_gyp='asan=1'), | 144 B('asan-builder-tests', H(compile_step, extra_gyp='asan=1'), |
| 145 T(std_tests, ['--asan'])), | 145 T(std_tests, ['--asan'])), |
| 146 B('blink-try-builder', H(compile_step)), |
| 146 B('chromedriver-fyi-tests-dbg', H(std_test_steps), | 147 B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
| 147 T(['chromedriver'], ['--install=ChromiumTestShell'])), | 148 T(['chromedriver'], ['--install=ChromiumTestShell'])), |
| 148 B('fyi-x86-builder-dbg', | 149 B('fyi-x86-builder-dbg', |
| 149 H(compile_step + std_host_tests, experimental, target_arch='x86')), | 150 H(compile_step + std_host_tests, experimental, target_arch='x86')), |
| 150 B('fyi-builder-dbg', | 151 B('fyi-builder-dbg', |
| 151 H(std_build_steps + std_host_tests, experimental, | 152 H(std_build_steps + std_host_tests, experimental, |
| 152 extra_gyp='emma_coverage=1')), | 153 extra_gyp='emma_coverage=1')), |
| 153 B('x86-builder-dbg', | 154 B('x86-builder-dbg', |
| 154 H(compile_step + std_host_tests, target_arch='x86')), | 155 H(compile_step + std_host_tests, target_arch='x86')), |
| 155 B('fyi-builder-rel', H(std_build_steps, experimental)), | 156 B('fyi-builder-rel', H(std_build_steps, experimental)), |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 for command in commands: | 276 for command in commands: |
| 276 print 'Will run: ', bb_utils.CommandToString(command) | 277 print 'Will run: ', bb_utils.CommandToString(command) |
| 277 print | 278 print |
| 278 | 279 |
| 279 env = GetEnvironment(bot_config.host_obj, options.testing) | 280 env = GetEnvironment(bot_config.host_obj, options.testing) |
| 280 return RunBotCommands(options, commands, env) | 281 return RunBotCommands(options, commands, env) |
| 281 | 282 |
| 282 | 283 |
| 283 if __name__ == '__main__': | 284 if __name__ == '__main__': |
| 284 sys.exit(main(sys.argv)) | 285 sys.exit(main(sys.argv)) |
| OLD | NEW |