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

Side by Side Diff: masters/master.chromium.swarm/master.cfg

Issue 152133008: Test VS2013 rollout on master.chromium.swarm. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
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 | « no previous file | 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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 from buildbot.changes import svnpoller 8 from buildbot.changes import svnpoller
9 from buildbot.scheduler import Scheduler 9 from buildbot.scheduler import Scheduler
10 10
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'net_unittests', 163 'net_unittests',
164 'unit_tests', 164 'unit_tests',
165 ], 165 ],
166 factory_properties={ 166 factory_properties={
167 'compile_env': { 167 'compile_env': {
168 'ISOLATE_DEBUG': '1', 168 'ISOLATE_DEBUG': '1',
169 }, 169 },
170 'gclient_env': { 170 'gclient_env': {
171 'GYP_DEFINES': 'fastbuild=2', 171 'GYP_DEFINES': 'fastbuild=2',
172 'GYP_GENERATORS': 'ninja', 172 'GYP_GENERATORS': 'ninja',
173 'DEPOT_TOOLS_WIN_TOOLCHAIN': '1',
M-A Ruel 2014/02/05 19:21:14 sort
scottmg 2014/02/05 19:23:31 Done.
173 }, 174 },
174 }) 175 })
175 176
176 m_win_isolate = swarm_factory.IsolatedFactory( 177 m_win_isolate = swarm_factory.IsolatedFactory(
177 'src/out', 178 'src/out',
178 target_platform='win32', 179 target_platform='win32',
179 full_checkout=True, 180 full_checkout=True,
180 swarm_client_canary=True) 181 swarm_client_canary=True)
181 f_chromium_win_isolate = m_win_isolate.IsolatedFactory( 182 f_chromium_win_isolate = m_win_isolate.IsolatedFactory(
182 options=[ 183 options=[
(...skipping 10 matching lines...) Expand all
193 'net_unittests', 194 'net_unittests',
194 'unit_tests', 195 'unit_tests',
195 ], 196 ],
196 factory_properties={ 197 factory_properties={
197 'compile_env': { 198 'compile_env': {
198 'ISOLATE_DEBUG': '1', 199 'ISOLATE_DEBUG': '1',
199 }, 200 },
200 'gclient_env': { 201 'gclient_env': {
201 'GYP_DEFINES': 'fastbuild=2', 202 'GYP_DEFINES': 'fastbuild=2',
202 'GYP_GENERATORS': 'ninja', 203 'GYP_GENERATORS': 'ninja',
204 'DEPOT_TOOLS_WIN_TOOLCHAIN': '1',
203 }, 205 },
204 }) 206 })
205 207
206 m_mac_swarm = swarm_factory.SwarmFactory( 208 m_mac_swarm = swarm_factory.SwarmFactory(
207 'src/out', 209 'src/out',
208 target_platform='darwin', 210 target_platform='darwin',
209 full_checkout=True, 211 full_checkout=True,
210 swarm_client_canary=True) 212 swarm_client_canary=True)
211 f_chromium_mac_swarm = m_mac_swarm.SwarmFactory( 213 f_chromium_mac_swarm = m_mac_swarm.SwarmFactory(
212 options=[ 214 options=[
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 master_utils.AutoSetupMaster(c, ActiveMaster, 349 master_utils.AutoSetupMaster(c, ActiveMaster,
348 public_html="../master.chromium.git/public_html", 350 public_html="../master.chromium.git/public_html",
349 templates=['../master.chromium/templates'], 351 templates=['../master.chromium/templates'],
350 enable_http_status_push=ActiveMaster.is_production_host) 352 enable_http_status_push=ActiveMaster.is_production_host)
351 353
352 354
353 ####### PROJECT IDENTITY 355 ####### PROJECT IDENTITY
354 356
355 c['projectName'] = ActiveMaster.project_name 357 c['projectName'] = ActiveMaster.project_name
356 c['projectURL'] = config.Master.project_url 358 c['projectURL'] = config.Master.project_url
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698