| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
| 11 | 11 |
| 12 # These modules come from scripts, which must be in the PYTHONPATH. | 12 # These modules come from scripts, which must be in the PYTHONPATH. |
| 13 from master import master_config | 13 from master import master_config |
| 14 from master import master_utils | 14 from master import master_utils |
| 15 from master import slaves_list | 15 from master import slaves_list |
| 16 from master.builders_pools import BuildersPools | 16 from master.builders_pools import BuildersPools |
| 17 from master.factory import chromeos_factory | 17 from master.factory import chromeos_factory |
| 18 from master.factory import chromium_factory | 18 from master.factory import chromium_factory |
| 19 from master.factory import swarm_factory | 19 from master.factory import swarm_factory |
| 20 from master.try_job_http import TryJobHTTP | 20 from master.try_job_http import TryJobHTTP |
| 21 from master.try_job_rietveld import TryJobRietveld | 21 from master.try_job_rietveld import TryJobRietveld |
| 22 from master.try_job_svn import TryJobSubversion | 22 from master.try_job_svn import TryJobSubversion |
| 23 from master_site_config import TryServerLinux | |
| 24 | 23 |
| 25 import config | 24 import config |
| 25 import master_site_config |
| 26 | 26 |
| 27 ActiveMaster = TryServerLinux | 27 ActiveMaster = master_site_config.TryServerLinux |
| 28 | 28 |
| 29 | 29 |
| 30 MAIL_NOTIFIER = True | 30 MAIL_NOTIFIER = True |
| 31 UPDATE_CODEREVIEW = ActiveMaster.is_production_host | 31 UPDATE_CODEREVIEW = ActiveMaster.is_production_host |
| 32 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host | 32 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host |
| 33 | 33 |
| 34 # This is the dictionary that the buildmaster pays attention to. We also use | 34 # This is the dictionary that the buildmaster pays attention to. We also use |
| 35 # a shorter alias to save typing. | 35 # a shorter alias to save typing. |
| 36 c = BuildmasterConfig = {} | 36 c = BuildmasterConfig = {} |
| 37 | 37 |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 ####### PROJECT IDENTITY | 406 ####### PROJECT IDENTITY |
| 407 | 407 |
| 408 # The 'projectURL' string will be used to provide a link | 408 # The 'projectURL' string will be used to provide a link |
| 409 # from buildbot HTML pages to your project's home page. | 409 # from buildbot HTML pages to your project's home page. |
| 410 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 410 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 411 | 411 |
| 412 # Buildbot master url: | 412 # Buildbot master url: |
| 413 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium.linux/' | 413 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium.linux/' |
| 414 | 414 |
| 415 # vi: set ts=4 sts=2 sw=2 et: | 415 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |