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

Side by Side Diff: masters/master.chromium.webkit/master_win_latest_cfg.py

Issue 11139002: Add O/S versions to all bot names, change "Webkit" to "WebKit" in all bot names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix Win7 dbg bots Created 8 years, 2 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
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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 # 124 #
125 # Main debug scheduler for webkit 125 # Main debug scheduler for webkit
126 # 126 #
127 S('s7_webkit_builder_dbg', branch='trunk', treeStableTimer=60) 127 S('s7_webkit_builder_dbg', branch='trunk', treeStableTimer=60)
128 S('s7_webkit_dbg', branch='trunk', treeStableTimer=60) 128 S('s7_webkit_dbg', branch='trunk', treeStableTimer=60)
129 129
130 # 130 #
131 # Win Dbg Builder 131 # Win Dbg Builder
132 # 132 #
133 B('Win (dbg)', 'f_win_dbg', scheduler='s7_webkit_builder_dbg', 133 B('XP (dbg)', 'f_win_dbg', scheduler='s7_webkit_builder_dbg',
134 builddir='win-latest-dbg') 134 builddir='win-latest-dbg')
135 F('f_win_dbg', win().ChromiumWebkitLatestFactory( 135 F('f_win_dbg', win().ChromiumWebkitLatestFactory(
136 target='Debug', 136 target='Debug',
137 project='all.sln;chromium_builder', 137 project='all.sln;chromium_builder',
138 tests=[ 138 tests=[
139 'browser_tests', 139 'browser_tests',
140 'content_browsertests', 140 'content_browsertests',
141 'interactive_ui', 141 'interactive_ui',
142 'unit', 142 'unit',
143 ], 143 ],
144 factory_properties={ 144 factory_properties={
145 'sharded_tests': sharded_tests, 145 'sharded_tests': sharded_tests,
146 'start_crash_handler': True, 146 'start_crash_handler': True,
147 'generate_gtest_json': True, 147 'generate_gtest_json': True,
148 'gclient_env': {'GYP_DEFINES': 'fastbuild=1', 148 'gclient_env': {'GYP_DEFINES': 'fastbuild=1',
149 'GYP_MSVS_VERSION': '2008'}})) 149 'GYP_MSVS_VERSION': '2008'}}))
150 150
151 def Update(config, active_master, c): 151 def Update(config, active_master, c):
152 return helper.Update(c) 152 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698