| 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 """Seeds a number of variables defined in chromium_config.py. | 5 """Seeds a number of variables defined in chromium_config.py. |
| 6 | 6 |
| 7 The recommended way is to fork this file and use a custom DEPS forked from | 7 The recommended way is to fork this file and use a custom DEPS forked from |
| 8 config/XXX/DEPS with the right configuration data.""" | 8 config/XXX/DEPS with the right configuration data.""" |
| 9 | 9 |
| 10 | 10 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 tree_closing_notification_recipients = [] | 67 tree_closing_notification_recipients = [] |
| 68 # 'from:' field for emails sent from the server. | 68 # 'from:' field for emails sent from the server. |
| 69 from_address = 'nobody@example.com' | 69 from_address = 'nobody@example.com' |
| 70 # Code review site to upload results. You should setup your own Rietveld | 70 # Code review site to upload results. You should setup your own Rietveld |
| 71 # instance with the code at | 71 # instance with the code at |
| 72 # http://code.google.com/p/rietveld/source/browse/#svn/branches/chromium | 72 # http://code.google.com/p/rietveld/source/browse/#svn/branches/chromium |
| 73 # You can host your own private rietveld instance on Django, see | 73 # You can host your own private rietveld instance on Django, see |
| 74 # http://code.google.com/p/google-app-engine-django and | 74 # http://code.google.com/p/google-app-engine-django and |
| 75 # http://code.google.com/appengine/articles/pure_django.html | 75 # http://code.google.com/appengine/articles/pure_django.html |
| 76 code_review_site = 'https://chromiumcodereview.appspot.com/status_listener' | 76 code_review_site = 'https://chromiumcodereview.appspot.com/status_listener' |
| 77 # Versions of third_party twisted and buildbot libraries to run on slaves. | |
| 78 buildslave_version = 'buildbot_slave_8_4' | |
| 79 twisted_version = 'twisted_10_2' | |
| 80 | 77 |
| 81 # For the following values, they are used only if non-0. Do not set them | 78 # For the following values, they are used only if non-0. Do not set them |
| 82 # here, set them in the actual master configuration class. | 79 # here, set them in the actual master configuration class. |
| 83 | 80 |
| 84 # Used for the waterfall URL and the waterfall's WebStatus object. | 81 # Used for the waterfall URL and the waterfall's WebStatus object. |
| 85 master_port = 0 | 82 master_port = 0 |
| 86 # Which port slaves use to connect to the master. | 83 # Which port slaves use to connect to the master. |
| 87 slave_port = 0 | 84 slave_port = 0 |
| 88 # The alternate read-only page. Optional. | 85 # The alternate read-only page. Optional. |
| 89 master_port_alt = 0 | 86 master_port_alt = 0 |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 # Web server base path. | 467 # Web server base path. |
| 471 www_dir_base = "\\\\" + archive_host + "\\www\\" | 468 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 472 | 469 |
| 473 @staticmethod | 470 @staticmethod |
| 474 def Internal(): | 471 def Internal(): |
| 475 pass | 472 pass |
| 476 | 473 |
| 477 | 474 |
| 478 class Distributed(object): | 475 class Distributed(object): |
| 479 """Not much to describe.""" | 476 """Not much to describe.""" |
| OLD | NEW |