| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # READ THIS: | 8 # READ THIS: |
| 9 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 9 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 nacl_source_url = ( | 29 nacl_source_url = ( |
| 30 'https://chromium.googlesource.com/native_client/src/native_client') | 30 'https://chromium.googlesource.com/native_client/src/native_client') |
| 31 | 31 |
| 32 MAIL_NOTIFIER = True | 32 MAIL_NOTIFIER = True |
| 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'] = lambda *_: False | 45 c['mergeRequests'] = lambda *_: False |
| 46 | 46 |
| 47 | 47 |
| 48 ####### BUILDERS | 48 ####### BUILDERS |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 c['eventHorizon'] = 100 | 260 c['eventHorizon'] = 100 |
| 261 # Must be at least 2x the number of on-going builds. | 261 # Must be at least 2x the number of on-going builds. |
| 262 c['buildCacheSize'] = 100 | 262 c['buildCacheSize'] = 100 |
| 263 | 263 |
| 264 | 264 |
| 265 ####### PROJECT IDENTITY | 265 ####### PROJECT IDENTITY |
| 266 | 266 |
| 267 # The 'projectURL' string will be used to provide a link | 267 # The 'projectURL' string will be used to provide a link |
| 268 # from buildbot HTML pages to your project's home page. | 268 # from buildbot HTML pages to your project's home page. |
| 269 c['projectURL'] = 'http://go/ChromeTryServer' | 269 c['projectURL'] = 'http://go/ChromeTryServer' |
| OLD | NEW |