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 optparse | 10 import optparse |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 T(std_tests, ['--asan']), None), | 106 T(std_tests, ['--asan']), None), |
107 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), | 107 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), |
108 None), | 108 None), |
109 B('fyi-builder-dbg', | 109 B('fyi-builder-dbg', |
110 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', | 110 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', |
111 'bb_run_findbugs', 'bb_zip_build'], None, None), | 111 'bb_run_findbugs', 'bb_zip_build'], None, None), |
112 B('fyi-builder-rel', | 112 B('fyi-builder-rel', |
113 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), | 113 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), |
114 B('fyi-tests', std_test_steps, | 114 B('fyi-tests', std_test_steps, |
115 T(std_tests, ['--experimental', flakiness_server]), None), | 115 T(std_tests, ['--experimental', flakiness_server]), None), |
| 116 B('fyi-component-builder-tests-dbg', compile_step, |
| 117 T(std_tests, ['--experimental', flakiness_server]), None), |
116 B('perf-tests-rel', std_test_steps, | 118 B('perf-tests-rel', std_test_steps, |
117 T([], ['--install=ContentShell']), | 119 T([], ['--install=ContentShell']), |
118 None), | 120 None), |
119 B('webkit-latest-webkit-tests', std_test_steps, | 121 B('webkit-latest-webkit-tests', std_test_steps, |
120 T(['webkit_layout', 'webkit']), None), | 122 T(['webkit_layout', 'webkit']), None), |
121 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), | 123 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), |
122 | 124 |
123 # Generic builder config (for substring match). | 125 # Generic builder config (for substring match). |
124 B('builder', std_build_steps, None, None), | 126 B('builder', std_build_steps, None, None), |
125 ] | 127 ] |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 cwd=CHROME_SRC, | 218 cwd=CHROME_SRC, |
217 env=dict(os.environ, BUILDBOT_TESTING='1')) | 219 env=dict(os.environ, BUILDBOT_TESTING='1')) |
218 else: | 220 else: |
219 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) | 221 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) |
220 if return_code != 0: | 222 if return_code != 0: |
221 return return_code | 223 return return_code |
222 | 224 |
223 | 225 |
224 if __name__ == '__main__': | 226 if __name__ == '__main__': |
225 sys.exit(main(sys.argv)) | 227 sys.exit(main(sys.argv)) |
OLD | NEW |