| OLD | NEW |
| 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 Loading... |
| 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) |
| OLD | NEW |