| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': 'ios_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, | 71 {'name': 'ios_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, |
| 72 {'name': 'ios_rel', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, | 72 {'name': 'ios_rel', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, |
| 73 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, | 73 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, |
| 74 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, | 74 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, |
| 75 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, | 75 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, |
| 76 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, | 76 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, |
| 77 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, | 77 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, |
| 78 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, | 78 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, |
| 79 { |
| 80 'name': 'ios_api_framework', |
| 81 'slavebuilddir': 'mac64', |
| 82 'recipe': 'webrtc/ios_api_framework', |
| 83 }, |
| 79 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, | 84 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, |
| 80 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, | 85 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, |
| 81 {'name': 'linux_compile_rel', 'slavebuilddir': 'linux64'}, | 86 {'name': 'linux_compile_rel', 'slavebuilddir': 'linux64'}, |
| 82 {'name': 'linux_dbg', 'slavebuilddir': 'linux64'}, | 87 {'name': 'linux_dbg', 'slavebuilddir': 'linux64'}, |
| 83 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, | 88 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, |
| 84 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, | 89 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, |
| 85 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, | 90 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, |
| 86 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 91 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 87 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 92 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 88 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 93 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 # Must be at least 2x the number of slaves. | 230 # Must be at least 2x the number of slaves. |
| 226 c['eventHorizon'] = 100 | 231 c['eventHorizon'] = 100 |
| 227 # Must be at least 2x the number of on-going builds. | 232 # Must be at least 2x the number of on-going builds. |
| 228 c['buildCacheSize'] = 100 | 233 c['buildCacheSize'] = 100 |
| 229 | 234 |
| 230 ####### PROJECT IDENTITY | 235 ####### PROJECT IDENTITY |
| 231 | 236 |
| 232 # The 'projectURL' string will be used to provide a link | 237 # The 'projectURL' string will be used to provide a link |
| 233 # from buildbot HTML pages to your project's home page. | 238 # from buildbot HTML pages to your project's home page. |
| 234 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 239 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |