Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: build/android/buildbot/bb_run_bot.py

Issue 15736027: Reconfigure fyi-tests-dbg-ics-gn to do a local build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 # Other waterfalls 103 # Other waterfalls
104 B('asan-builder-tests', compile_step + ['bb_asan_tests_setup'], 104 B('asan-builder-tests', compile_step + ['bb_asan_tests_setup'],
105 T(std_tests, ['--asan']), {'extra_gyp_defines': 'asan=1'}), 105 T(std_tests, ['--asan']), {'extra_gyp_defines': 'asan=1'}),
106 B('chromedriver-fyi-tests-dbg', std_test_steps, 106 B('chromedriver-fyi-tests-dbg', std_test_steps,
107 T(['chromedriver'], ['--install=ChromiumTestShell']), None), 107 T(['chromedriver'], ['--install=ChromiumTestShell']), None),
108 B('fyi-builder-dbg', 108 B('fyi-builder-dbg',
109 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', 109 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental',
110 'bb_run_findbugs', 'bb_zip_build'], None, None), 110 'bb_run_findbugs', 'bb_zip_build'], None, None),
111 B('fyi-builder-rel', 111 B('fyi-builder-rel',
112 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), 112 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None),
113 B('fyi-tests-dbg-ics-gn', ['bb_compile', 'bb_compile_experimental'],
114 T(std_tests, ['--experimental', flakiness_server]), None),
113 B('fyi-tests', std_test_steps, 115 B('fyi-tests', std_test_steps,
114 T(std_tests, ['--experimental', flakiness_server]), None), 116 T(std_tests, ['--experimental', flakiness_server]), None),
115 B('fyi-component-builder-tests-dbg', compile_step, 117 B('fyi-component-builder-tests-dbg', compile_step,
116 T(std_tests, ['--experimental', flakiness_server]), None), 118 T(std_tests, ['--experimental', flakiness_server]), None),
117 B('perf-tests-rel', std_test_steps, 119 B('perf-tests-rel', std_test_steps,
118 T([], ['--install=ContentShell']), 120 T([], ['--install=ContentShell']),
119 None), 121 None),
120 B('webkit-latest-webkit-tests', std_test_steps, 122 B('webkit-latest-webkit-tests', std_test_steps,
121 T(['webkit_layout', 'webkit']), None), 123 T(['webkit_layout', 'webkit']), None),
122 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), 124 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None),
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 cwd=CHROME_SRC, 219 cwd=CHROME_SRC,
218 env=dict(os.environ, BUILDBOT_TESTING='1')) 220 env=dict(os.environ, BUILDBOT_TESTING='1'))
219 else: 221 else:
220 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) 222 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env)
221 if return_code != 0: 223 if return_code != 0:
222 return return_code 224 return return_code
223 225
224 226
225 if __name__ == '__main__': 227 if __name__ == '__main__':
226 sys.exit(main(sys.argv)) 228 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698