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

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

Issue 134923003: Revert 244256 "[Android] Enable lint warnings by default." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 | trunk/src/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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 # Other waterfalls 143 # Other waterfalls
144 B('asan-builder-tests', H(compile_step, extra_gyp='asan=1'), 144 B('asan-builder-tests', H(compile_step, extra_gyp='asan=1'),
145 T(std_tests, ['--asan'])), 145 T(std_tests, ['--asan'])),
146 B('blink-try-builder', H(compile_step)), 146 B('blink-try-builder', H(compile_step)),
147 B('chromedriver-fyi-tests-dbg', H(std_test_steps), 147 B('chromedriver-fyi-tests-dbg', H(std_test_steps),
148 T(['chromedriver'], ['--install=ChromiumTestShell'])), 148 T(['chromedriver'], ['--install=ChromiumTestShell'])),
149 B('fyi-x86-builder-dbg', 149 B('fyi-x86-builder-dbg',
150 H(compile_step + std_host_tests, experimental, target_arch='x86')), 150 H(compile_step + std_host_tests, experimental, target_arch='x86')),
151 B('fyi-builder-dbg', 151 B('fyi-builder-dbg',
152 H(std_build_steps + std_host_tests, experimental, 152 H(std_build_steps + std_host_tests, experimental,
153 extra_gyp='emma_coverage=1')), 153 extra_gyp='emma_coverage=1 android_lint=1')),
154 B('x86-builder-dbg', 154 B('x86-builder-dbg',
155 H(compile_step + std_host_tests, target_arch='x86')), 155 H(compile_step + std_host_tests, target_arch='x86')),
156 B('fyi-builder-rel', H(std_build_steps, experimental)), 156 B('fyi-builder-rel', H(std_build_steps, experimental)),
157 B('fyi-tests', H(std_test_steps), 157 B('fyi-tests', H(std_test_steps),
158 T(std_tests, ['--experimental', flakiness_server, 158 T(std_tests, ['--experimental', flakiness_server,
159 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])), 159 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET])),
160 B('fyi-component-builder-tests-dbg', 160 B('fyi-component-builder-tests-dbg',
161 H(compile_step, extra_gyp='component=shared_library'), 161 H(compile_step, extra_gyp='component=shared_library'),
162 T(std_tests, ['--experimental', flakiness_server])), 162 T(std_tests, ['--experimental', flakiness_server])),
163 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])), 163 B('gpu-builder-tests-dbg', H(compile_step), T(['gpu'])),
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 for command in commands: 283 for command in commands:
284 print 'Will run: ', bb_utils.CommandToString(command) 284 print 'Will run: ', bb_utils.CommandToString(command)
285 print 285 print
286 286
287 env = GetEnvironment(bot_config.host_obj, options.testing) 287 env = GetEnvironment(bot_config.host_obj, options.testing)
288 return RunBotCommands(options, commands, env) 288 return RunBotCommands(options, commands, env)
289 289
290 290
291 if __name__ == '__main__': 291 if __name__ == '__main__':
292 sys.exit(main(sys.argv)) 292 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | trunk/src/build/android/gyp/lint.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698