| 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 json | 8 import json |
| 9 import optparse | 9 import optparse |
| 10 import os | 10 import os |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 # Main builders | 78 # Main builders |
| 79 B('main-builder-dbg', | 79 B('main-builder-dbg', |
| 80 ['bb_compile', 'bb_run_findbugs', 'bb_zip_build'], None, None), | 80 ['bb_compile', 'bb_run_findbugs', 'bb_zip_build'], None, None), |
| 81 B('main-builder-rel', std_build_steps, None, None), | 81 B('main-builder-rel', std_build_steps, None, None), |
| 82 B('main-clang-builder', ['bb_compile'], None, None), | 82 B('main-clang-builder', ['bb_compile'], None, None), |
| 83 B('main-clobber', ['bb_compile'], None, None), | 83 B('main-clobber', ['bb_compile'], None, None), |
| 84 B('main-tests-dbg', std_test_steps, T(std_tests), None), | 84 B('main-tests-dbg', std_test_steps, T(std_tests), None), |
| 85 | 85 |
| 86 # Other waterfalls | 86 # Other waterfalls |
| 87 B('asan-builder', std_build_steps, None, None), | 87 B('asan-builder', std_build_steps, None, None), |
| 88 B('asan-tests', std_test_steps, T(std_tests, ['--asan']), None), | 88 B('asan-tests', std_test_steps + ['bb_asan_tests_setup'], |
| 89 T(std_tests, ['--asan']), None), |
| 89 B('fyi-builder-dbg', | 90 B('fyi-builder-dbg', |
| 90 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', | 91 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', |
| 91 'bb_run_findbugs', 'bb_zip_build'], None, None), | 92 'bb_run_findbugs', 'bb_zip_build'], None, None), |
| 92 B('fyi-builder-rel', | 93 B('fyi-builder-rel', |
| 93 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), | 94 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), |
| 94 B('fyi-tests', std_test_steps, T(std_tests, ['--experimental']), None), | 95 B('fyi-tests', std_test_steps, T(std_tests, ['--experimental']), None), |
| 95 B('perf-builder-rel', std_build_steps, None, None), | 96 B('perf-builder-rel', std_build_steps, None, None), |
| 96 B('perf-tests-rel', std_test_steps, T([], ['--install=ContentShell']), | 97 B('perf-tests-rel', std_test_steps, T([], ['--install=ContentShell']), |
| 97 None), | 98 None), |
| 98 B('webkit-latest-builder', std_build_steps, None, None), | 99 B('webkit-latest-builder', std_build_steps, None, None), |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 continue | 182 continue |
| 182 env = dict(os.environ) | 183 env = dict(os.environ) |
| 183 env['BUILDBOT_TESTING'] = '1' | 184 env['BUILDBOT_TESTING'] = '1' |
| 184 | 185 |
| 185 return_code |= subprocess.call(command, cwd=CHROME_SRC, env=env) | 186 return_code |= subprocess.call(command, cwd=CHROME_SRC, env=env) |
| 186 return return_code | 187 return return_code |
| 187 | 188 |
| 188 | 189 |
| 189 if __name__ == '__main__': | 190 if __name__ == '__main__': |
| 190 sys.exit(main(sys.argv)) | 191 sys.exit(main(sys.argv)) |
| OLD | NEW |