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

Side by Side Diff: scripts/master/factory/gclient_factory.py

Issue 14383021: Break config_default into master_site_configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: config -> config_bootstrap for masters_test import Created 7 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
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 """Utility classes to generate and manage a BuildFactory to be passed to a 5 """Utility classes to generate and manage a BuildFactory to be passed to a
6 builder dictionary as the 'factory' member, for each builder in c['builders']. 6 builder dictionary as the 'factory' member, for each builder in c['builders'].
7 7
8 Specifically creates a base BuildFactory that will execute a gclient checkout 8 Specifically creates a base BuildFactory that will execute a gclient checkout
9 first.""" 9 first."""
10 10
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 no_gclient_branch=no_gclient_branch, 324 no_gclient_branch=no_gclient_branch,
325 no_gclient_revision=no_gclient_revision, 325 no_gclient_revision=no_gclient_revision,
326 gclient_transitive=gclient_transitive, 326 gclient_transitive=gclient_transitive,
327 primary_repo=primary_repo, 327 primary_repo=primary_repo,
328 gclient_jobs=gclient_jobs, 328 gclient_jobs=gclient_jobs,
329 blink_config=blink_config) 329 blink_config=blink_config)
330 330
331 if slave_type in ('AnnotatedTrybot', 'CrosTrybot', 'Trybot', 'Bisect'): 331 if slave_type in ('AnnotatedTrybot', 'CrosTrybot', 'Trybot', 'Bisect'):
332 factory_cmd_obj.AddApplyIssueStep( 332 factory_cmd_obj.AddApplyIssueStep(
333 timeout=timeout, 333 timeout=timeout,
334 server=config.Master.TryServer.code_review_site) 334 server=config.Master.Master4.code_review_site)
335 335
336 if not self._nohooks_on_update: 336 if not self._nohooks_on_update:
337 factory_cmd_obj.AddRunHooksStep(env=env, timeout=timeout) 337 factory_cmd_obj.AddRunHooksStep(env=env, timeout=timeout)
OLDNEW
« no previous file with comments | « masters/master.tryserver.webrtc/master_site_config.py ('k') | scripts/master/factory/nacl_commands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698