| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # These modules come from scripts, which must be in the PYTHONPATH. | 5 # These modules come from scripts, which must be in the PYTHONPATH. |
| 6 from master import master_utils | 6 from master import master_utils |
| 7 from master import slaves_list | 7 from master import slaves_list |
| 8 from master.builders_pools import BuildersPools | 8 from master.builders_pools import BuildersPools |
| 9 from master.factory import annotator_factory | 9 from master.factory import annotator_factory |
| 10 from master.try_job_http import TryJobHTTP | 10 from master.try_job_http import TryJobHTTP |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 {'name': 'mac_gn_rel', 'slavebuilddir': 'mac64_gn'}, | 46 {'name': 'mac_gn_rel', 'slavebuilddir': 'mac64_gn'}, |
| 47 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, | 47 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, |
| 48 {'name': 'ios', 'slavebuilddir': 'mac32'}, | 48 {'name': 'ios', 'slavebuilddir': 'mac32'}, |
| 49 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, | 49 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, |
| 50 {'name': 'ios_arm64', 'slavebuilddir': 'mac64'}, | 50 {'name': 'ios_arm64', 'slavebuilddir': 'mac64'}, |
| 51 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, | 51 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, |
| 52 {'name': 'linux', 'slavebuilddir': 'linux64'}, | 52 {'name': 'linux', 'slavebuilddir': 'linux64'}, |
| 53 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, | 53 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, |
| 54 {'name': 'linux_gn', 'slavebuilddir': 'linux64_gn'}, | 54 {'name': 'linux_gn', 'slavebuilddir': 'linux64_gn'}, |
| 55 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, | 55 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, |
| 56 {'name': 'linux_gcc', 'slavebuilddir': 'linux_gcc'}, |
| 56 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck'}, | 57 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck'}, |
| 57 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 58 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 58 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 59 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 59 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 60 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| 60 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, | 61 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, |
| 61 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 62 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 62 {'name': 'android', 'slavebuilddir': 'android'}, | 63 {'name': 'android', 'slavebuilddir': 'android'}, |
| 63 {'name': 'android_rel', 'slavebuilddir': 'android'}, | 64 {'name': 'android_rel', 'slavebuilddir': 'android'}, |
| 64 {'name': 'android_gn', 'slavebuilddir': 'android_gn'}, | 65 {'name': 'android_gn', 'slavebuilddir': 'android_gn'}, |
| 65 {'name': 'android_gn_rel', 'slavebuilddir': 'android_gn'}, | 66 {'name': 'android_gn_rel', 'slavebuilddir': 'android_gn'}, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 # Must be at least 2x the number of slaves. | 168 # Must be at least 2x the number of slaves. |
| 168 c['eventHorizon'] = 100 | 169 c['eventHorizon'] = 100 |
| 169 # Must be at least 2x the number of on-going builds. | 170 # Must be at least 2x the number of on-going builds. |
| 170 c['buildCacheSize'] = 100 | 171 c['buildCacheSize'] = 100 |
| 171 | 172 |
| 172 ####### PROJECT IDENTITY | 173 ####### PROJECT IDENTITY |
| 173 | 174 |
| 174 # The 'projectURL' string will be used to provide a link | 175 # The 'projectURL' string will be used to provide a link |
| 175 # from buildbot HTML pages to your project's home page. | 176 # from buildbot HTML pages to your project's home page. |
| 176 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 177 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |