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

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

Issue 153733003: Enable stack tool and ASan symbolization of logcat on Android bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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 | « build/android/buildbot/bb_device_steps.py ('k') | 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 os 10 import os
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 B('main-builder-dbg', H(std_build_steps + std_host_tests)), 136 B('main-builder-dbg', H(std_build_steps + std_host_tests)),
137 B('main-builder-rel', H(std_build_steps)), 137 B('main-builder-rel', H(std_build_steps)),
138 B('main-clang-builder', 138 B('main-clang-builder',
139 H(compile_step, extra_gyp='clang=1 component=shared_library')), 139 H(compile_step, extra_gyp='clang=1 component=shared_library')),
140 B('main-clobber', H(compile_step)), 140 B('main-clobber', H(compile_step)),
141 B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])), 141 B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])),
142 142
143 # Other waterfalls 143 # Other waterfalls
144 B('asan-builder-tests', H(compile_step, 144 B('asan-builder-tests', H(compile_step,
145 extra_gyp='asan=1 component=shared_library'), 145 extra_gyp='asan=1 component=shared_library'),
146 T(std_tests, ['--asan'])), 146 T(std_tests, ['--asan', '--asan-symbolize'])),
147 B('blink-try-builder', H(compile_step)), 147 B('blink-try-builder', H(compile_step)),
148 B('chromedriver-fyi-tests-dbg', H(std_test_steps), 148 B('chromedriver-fyi-tests-dbg', H(std_test_steps),
149 T(['chromedriver'], ['--install=ChromiumTestShell'])), 149 T(['chromedriver'], ['--install=ChromiumTestShell'])),
150 B('fyi-x86-builder-dbg', 150 B('fyi-x86-builder-dbg',
151 H(compile_step + std_host_tests, experimental, target_arch='x86')), 151 H(compile_step + std_host_tests, experimental, target_arch='x86')),
152 B('fyi-builder-dbg', 152 B('fyi-builder-dbg',
153 H(std_build_steps + std_host_tests, experimental, 153 H(std_build_steps + std_host_tests, experimental,
154 extra_gyp='emma_coverage=1 android_lint=1')), 154 extra_gyp='emma_coverage=1 android_lint=1')),
155 B('x86-builder-dbg', 155 B('x86-builder-dbg',
156 H(compile_step + std_host_tests, target_arch='x86')), 156 H(compile_step + std_host_tests, target_arch='x86')),
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 for command in commands: 284 for command in commands:
285 print 'Will run: ', bb_utils.CommandToString(command) 285 print 'Will run: ', bb_utils.CommandToString(command)
286 print 286 print
287 287
288 env = GetEnvironment(bot_config.host_obj, options.testing) 288 env = GetEnvironment(bot_config.host_obj, options.testing)
289 return RunBotCommands(options, commands, env) 289 return RunBotCommands(options, commands, env)
290 290
291 291
292 if __name__ == '__main__': 292 if __name__ == '__main__':
293 sys.exit(main(sys.argv)) 293 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698