| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
| 5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
| 6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
| 7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
| 8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, | 57 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, |
| 58 {'name': 'mac_x64', 'slavebuilddir': 'mac64'}, | 58 {'name': 'mac_x64', 'slavebuilddir': 'mac64'}, |
| 59 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, | 59 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, |
| 60 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'}, | 60 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'}, |
| 61 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, | 61 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, |
| 62 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, | 62 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, |
| 63 {'name': 'ios', 'slavebuilddir': 'mac32'}, | 63 {'name': 'ios', 'slavebuilddir': 'mac32'}, |
| 64 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, | 64 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, |
| 65 {'name': 'ios_arm64', 'slavebuilddir': 'mac64'}, | 65 {'name': 'ios_arm64', 'slavebuilddir': 'mac64'}, |
| 66 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, | 66 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, |
| 67 {'name': 'ios32_sim', 'slavebuilddir': 'mac32'}, |
| 68 {'name': 'ios64_sim', 'slavebuilddir': 'mac64'}, |
| 67 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, | 69 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, |
| 68 {'name': 'linux', 'slavebuilddir': 'linux64'}, | 70 {'name': 'linux', 'slavebuilddir': 'linux64'}, |
| 69 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, | 71 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, |
| 70 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, | 72 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, |
| 71 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, | 73 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, |
| 72 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 74 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 73 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 75 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 74 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 76 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| 75 {'name': 'linux_gn', 'slavebuilddir': 'linux64_gn'}, | 77 {'name': 'linux_gn', 'slavebuilddir': 'linux64_gn'}, |
| 76 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, | 78 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 # Must be at least 2x the number of slaves. | 195 # Must be at least 2x the number of slaves. |
| 194 c['eventHorizon'] = 100 | 196 c['eventHorizon'] = 100 |
| 195 # Must be at least 2x the number of on-going builds. | 197 # Must be at least 2x the number of on-going builds. |
| 196 c['buildCacheSize'] = 100 | 198 c['buildCacheSize'] = 100 |
| 197 | 199 |
| 198 ####### PROJECT IDENTITY | 200 ####### PROJECT IDENTITY |
| 199 | 201 |
| 200 # The 'projectURL' string will be used to provide a link | 202 # The 'projectURL' string will be used to provide a link |
| 201 # from buildbot HTML pages to your project's home page. | 203 # from buildbot HTML pages to your project's home page. |
| 202 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 204 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |