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

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: Rebase 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 no_gclient_branch=no_gclient_branch, 318 no_gclient_branch=no_gclient_branch,
319 no_gclient_revision=no_gclient_revision, 319 no_gclient_revision=no_gclient_revision,
320 gclient_transitive=gclient_transitive, 320 gclient_transitive=gclient_transitive,
321 primary_repo=primary_repo, 321 primary_repo=primary_repo,
322 gclient_jobs=gclient_jobs, 322 gclient_jobs=gclient_jobs,
323 blink_config=blink_config) 323 blink_config=blink_config)
324 324
325 if slave_type in ('AnnotatedTrybot', 'CrosTrybot', 'Trybot', 'Bisect'): 325 if slave_type in ('AnnotatedTrybot', 'CrosTrybot', 'Trybot', 'Bisect'):
326 factory_cmd_obj.AddApplyIssueStep( 326 factory_cmd_obj.AddApplyIssueStep(
327 timeout=timeout, 327 timeout=timeout,
328 server=config.Master.TryServer.code_review_site) 328 server=config.Master.Master4.code_review_site)
329 329
330 if not self._nohooks_on_update: 330 if not self._nohooks_on_update:
331 factory_cmd_obj.AddRunHooksStep(env=env, timeout=timeout) 331 factory_cmd_obj.AddRunHooksStep(env=env, timeout=timeout)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698