| 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 import os | 10 import os |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 MAIL_NOTIFIER = ActiveMaster.is_production_host | 29 MAIL_NOTIFIER = ActiveMaster.is_production_host |
| 30 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host | 30 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host |
| 31 | 31 |
| 32 m_annotator = annotator_factory.AnnotatorFactory(ActiveMaster) | 32 m_annotator = annotator_factory.AnnotatorFactory(ActiveMaster) |
| 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 |
| 38 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 38 config.DatabaseSetup(c) |
| 39 | 39 |
| 40 ####### CHANGESOURCES | 40 ####### CHANGESOURCES |
| 41 | 41 |
| 42 c['change_source'] = [] | 42 c['change_source'] = [] |
| 43 | 43 |
| 44 # Avoid merging requests. | 44 # Avoid merging requests. |
| 45 c['mergeRequests'] = False | 45 c['mergeRequests'] = False |
| 46 | 46 |
| 47 ####### BUILDERS | 47 ####### BUILDERS |
| 48 | 48 |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 # base.make_stop_form = hack_stop(base.make_stop_form) | 525 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 526 | 526 |
| 527 | 527 |
| 528 ####### PROJECT IDENTITY | 528 ####### PROJECT IDENTITY |
| 529 | 529 |
| 530 # The 'projectURL' string will be used to provide a link | 530 # The 'projectURL' string will be used to provide a link |
| 531 # from buildbot HTML pages to your project's home page. | 531 # from buildbot HTML pages to your project's home page. |
| 532 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 532 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 533 | 533 |
| 534 # vi: set ts=4 sts=2 sw=2 et: | 534 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |