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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 {'name': 'mac_compile_x64_dbg', 'slavebuilddir': 'mac64'}, | 61 {'name': 'mac_compile_x64_dbg', 'slavebuilddir': 'mac64'}, |
62 {'name': 'mac_compile_x64_rel', 'slavebuilddir': 'mac64'}, | 62 {'name': 'mac_compile_x64_rel', 'slavebuilddir': 'mac64'}, |
63 {'name': 'mac_dbg', 'slavebuilddir': 'mac32'}, | 63 {'name': 'mac_dbg', 'slavebuilddir': 'mac32'}, |
64 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, | 64 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, |
65 {'name': 'mac_x64_dbg', 'slavebuilddir': 'mac64'}, | 65 {'name': 'mac_x64_dbg', 'slavebuilddir': 'mac64'}, |
66 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, | 66 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, |
67 {'name': 'mac_x64_gn_dbg', 'slavebuilddir': 'mac_gn'}, | 67 {'name': 'mac_x64_gn_dbg', 'slavebuilddir': 'mac_gn'}, |
68 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, | 68 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, |
69 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, | 69 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, |
70 {'name': 'mac_swarming', 'slavebuilddir': 'mac64_swarming'}, | 70 {'name': 'mac_swarming', 'slavebuilddir': 'mac64_swarming'}, |
71 {'name': 'mac_rel_xcode7', 'slavebuilddir': 'mac64'}, | |
72 {'name': 'ios_dbg', 'slavebuilddir': 'mac32'}, | 71 {'name': 'ios_dbg', 'slavebuilddir': 'mac32'}, |
73 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, | 72 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, |
74 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64'}, | 73 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64'}, |
75 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, | 74 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, |
76 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32'}, | 75 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32'}, |
77 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64'}, | 76 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64'}, |
78 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn'}, | 77 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn'}, |
79 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn'}, | 78 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn'}, |
80 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, | 79 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, |
81 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, | 80 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 # Must be at least 2x the number of slaves. | 215 # Must be at least 2x the number of slaves. |
217 c['eventHorizon'] = 100 | 216 c['eventHorizon'] = 100 |
218 # Must be at least 2x the number of on-going builds. | 217 # Must be at least 2x the number of on-going builds. |
219 c['buildCacheSize'] = 100 | 218 c['buildCacheSize'] = 100 |
220 | 219 |
221 ####### PROJECT IDENTITY | 220 ####### PROJECT IDENTITY |
222 | 221 |
223 # The 'projectURL' string will be used to provide a link | 222 # The 'projectURL' string will be used to provide a link |
224 # from buildbot HTML pages to your project's home page. | 223 # from buildbot HTML pages to your project's home page. |
225 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 224 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
OLD | NEW |