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

Side by Side Diff: masters/master.chromium/master_linux_cfg.py

Issue 10263009: Make full builders use tests_run=noop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rework to use tests_run=noop Created 8 years, 7 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 | « masters/master.chromium/master_full_cfg.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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 # Linux Dbg Clang bot 215 # Linux Dbg Clang bot
216 # 216 #
217 217
218 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg', 218 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg',
219 notify_on_missing=True) 219 notify_on_missing=True)
220 F('dbg_linux_clang', linux().ChromiumFactory( 220 F('dbg_linux_clang', linux().ChromiumFactory(
221 target='Debug', 221 target='Debug',
222 options=['--build-tool=make', '--compiler=goma-clang'], 222 options=['--build-tool=make', '--compiler=goma-clang'],
223 tests=['base', 'gfx', 'unit', 'crypto'], 223 tests=['base', 'gfx', 'unit', 'crypto'],
224 factory_properties={ 224 factory_properties={
225 'gclient_env': { 225 'gclient_env': {
226 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 fastbuild=1' 226 'GYP_DEFINES':
227 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 tests_run=noop',
227 }})) 228 }}))
228 229
229 230
230 def Update(config, active_master, c): 231 def Update(config, active_master, c):
231 return helper.Update(c) 232 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium/master_full_cfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698