| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) |
| OLD | NEW |