| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 B('fyi-builder-dbg', | 126 B('fyi-builder-dbg', |
| 127 H(std_build_opts + std_host_tests + ['--experimental'])), | 127 H(std_build_opts + std_host_tests + ['--experimental'])), |
| 128 B('fyi-builder-rel', H(std_build_opts + ['--experimental'])), | 128 B('fyi-builder-rel', H(std_build_opts + ['--experimental'])), |
| 129 B('fyi-tests-dbg-ics-gn', H(compile_opt + [ '--experimental']), | 129 B('fyi-tests-dbg-ics-gn', H(compile_opt + [ '--experimental']), |
| 130 T(std_tests, ['--experimental', flakiness_server])), | 130 T(std_tests, ['--experimental', flakiness_server])), |
| 131 B('fyi-tests', H(std_test_opts), | 131 B('fyi-tests', H(std_test_opts), |
| 132 T(std_tests, ['--experimental', flakiness_server])), | 132 T(std_tests, ['--experimental', flakiness_server])), |
| 133 B('fyi-component-builder-tests-dbg', | 133 B('fyi-component-builder-tests-dbg', |
| 134 H(compile_opt, 'component=shared_library'), | 134 H(compile_opt, 'component=shared_library'), |
| 135 T(std_tests, ['--experimental', flakiness_server])), | 135 T(std_tests, ['--experimental', flakiness_server])), |
| 136 B('perf-bisect-builder-tests-dbg', H(['--bisect-perf-regression'])), |
| 136 B('perf-tests-rel', H(std_test_opts), T([], ['--install=ContentShell'])), | 137 B('perf-tests-rel', H(std_test_opts), T([], ['--install=ContentShell'])), |
| 137 B('webkit-latest-webkit-tests', H(std_test_opts), | 138 B('webkit-latest-webkit-tests', H(std_test_opts), |
| 138 T(['webkit_layout', 'webkit'])), | 139 T(['webkit_layout', 'webkit'])), |
| 139 B('webkit-latest-contentshell', H(compile_opt), T(['webkit_layout'])), | 140 B('webkit-latest-contentshell', H(compile_opt), T(['webkit_layout'])), |
| 140 B('builder-unit-tests', H(compile_opt), T(['unit'])), | 141 B('builder-unit-tests', H(compile_opt), T(['unit'])), |
| 141 | 142 |
| 142 # Generic builder config (for substring match). | 143 # Generic builder config (for substring match). |
| 143 B('builder', H(std_build_opts)), | 144 B('builder', H(std_build_opts)), |
| 144 ] | 145 ] |
| 145 | 146 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 sys.stdout.flush() | 216 sys.stdout.flush() |
| 216 if options.testing: | 217 if options.testing: |
| 217 env['BUILDBOT_TESTING'] = '1' | 218 env['BUILDBOT_TESTING'] = '1' |
| 218 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env) | 219 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env) |
| 219 if return_code != 0: | 220 if return_code != 0: |
| 220 return return_code | 221 return return_code |
| 221 | 222 |
| 222 | 223 |
| 223 if __name__ == '__main__': | 224 if __name__ == '__main__': |
| 224 sys.exit(main(sys.argv)) | 225 sys.exit(main(sys.argv)) |
| OLD | NEW |