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

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

Issue 447793002: Enable Android lint by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | build/android/gyp/lint.py » ('j') | 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 os 10 import os
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 B('asan-builder-tests', H(compile_step, 151 B('asan-builder-tests', H(compile_step,
152 extra_gyp='asan=1 component=shared_library'), 152 extra_gyp='asan=1 component=shared_library'),
153 T(std_tests, ['--asan', '--asan-symbolize'])), 153 T(std_tests, ['--asan', '--asan-symbolize'])),
154 B('blink-try-builder', H(compile_step)), 154 B('blink-try-builder', H(compile_step)),
155 B('chromedriver-fyi-tests-dbg', H(std_test_steps), 155 B('chromedriver-fyi-tests-dbg', H(std_test_steps),
156 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe'])), 156 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe'])),
157 B('fyi-x86-builder-dbg', 157 B('fyi-x86-builder-dbg',
158 H(compile_step + std_host_tests, experimental, target_arch='x86')), 158 H(compile_step + std_host_tests, experimental, target_arch='x86')),
159 B('fyi-builder-dbg', 159 B('fyi-builder-dbg',
160 H(std_build_steps + std_host_tests, experimental, 160 H(std_build_steps + std_host_tests, experimental,
161 extra_gyp='emma_coverage=1 android_lint=1')), 161 extra_gyp='emma_coverage=1')),
162 B('x86-builder-dbg', 162 B('x86-builder-dbg',
163 H(compile_step + std_host_tests, target_arch='x86')), 163 H(compile_step + std_host_tests, target_arch='x86')),
164 B('fyi-builder-rel', H(std_build_steps, experimental)), 164 B('fyi-builder-rel', H(std_build_steps, experimental)),
165 B('fyi-tests', H(std_test_steps), 165 B('fyi-tests', H(std_test_steps),
166 T(std_tests, ['--experimental', flakiness_server, 166 T(std_tests, ['--experimental', flakiness_server,
167 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), 167 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])),
168 B('fyi-component-builder-tests-dbg', 168 B('fyi-component-builder-tests-dbg',
169 H(compile_step, extra_gyp='component=shared_library'), 169 H(compile_step, extra_gyp='component=shared_library'),
170 T(std_tests, ['--experimental', flakiness_server])), 170 T(std_tests, ['--experimental', flakiness_server])),
171 B('gpu-builder-tests-dbg', 171 B('gpu-builder-tests-dbg',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 for command in commands: 307 for command in commands:
308 print 'Will run: ', bb_utils.CommandToString(command) 308 print 'Will run: ', bb_utils.CommandToString(command)
309 print 309 print
310 310
311 env = GetEnvironment(bot_config.host_obj, options.testing) 311 env = GetEnvironment(bot_config.host_obj, options.testing)
312 return RunBotCommands(options, commands, env) 312 return RunBotCommands(options, commands, env)
313 313
314 314
315 if __name__ == '__main__': 315 if __name__ == '__main__':
316 sys.exit(main(sys.argv)) 316 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | build/android/gyp/lint.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698