| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, | 87 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, |
| 88 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, | 88 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, |
| 89 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, | 89 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, |
| 90 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 90 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 91 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 91 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 92 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 92 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| 93 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, | 93 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, |
| 94 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 94 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 95 {'name': 'linux_gn_dbg', 'slavebuilddir': 'linux64_gn'}, | 95 {'name': 'linux_gn_dbg', 'slavebuilddir': 'linux64_gn'}, |
| 96 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, | 96 {'name': 'linux_gn_rel', 'slavebuilddir': 'linux64_gn'}, |
| 97 {'name': 'linux_libfuzzer_rel', 'slavebuilddir': 'linux64_libfuzzer'}, |
| 97 {'name': 'linux_swarming', 'slavebuilddir': 'linux64_swarming'}, | 98 {'name': 'linux_swarming', 'slavebuilddir': 'linux64_swarming'}, |
| 98 {'name': 'android_compile_dbg', 'slavebuilddir': 'android'}, | 99 {'name': 'android_compile_dbg', 'slavebuilddir': 'android'}, |
| 99 {'name': 'android_compile_rel', 'slavebuilddir': 'android'}, | 100 {'name': 'android_compile_rel', 'slavebuilddir': 'android'}, |
| 100 {'name': 'android_compile_arm64_dbg', 'slavebuilddir': 'android_arm64'}, | 101 {'name': 'android_compile_arm64_dbg', 'slavebuilddir': 'android_arm64'}, |
| 101 {'name': 'android_compile_arm64_rel', 'slavebuilddir': 'android_arm64'}, | 102 {'name': 'android_compile_arm64_rel', 'slavebuilddir': 'android_arm64'}, |
| 102 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, | 103 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, |
| 103 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, | 104 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, |
| 104 {'name': 'android_dbg', 'slavebuilddir': 'android'}, | 105 {'name': 'android_dbg', 'slavebuilddir': 'android'}, |
| 105 {'name': 'android_rel', 'slavebuilddir': 'android'}, | 106 {'name': 'android_rel', 'slavebuilddir': 'android'}, |
| 106 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, | 107 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 # Must be at least 2x the number of slaves. | 222 # Must be at least 2x the number of slaves. |
| 222 c['eventHorizon'] = 100 | 223 c['eventHorizon'] = 100 |
| 223 # Must be at least 2x the number of on-going builds. | 224 # Must be at least 2x the number of on-going builds. |
| 224 c['buildCacheSize'] = 100 | 225 c['buildCacheSize'] = 100 |
| 225 | 226 |
| 226 ####### PROJECT IDENTITY | 227 ####### PROJECT IDENTITY |
| 227 | 228 |
| 228 # The 'projectURL' string will be used to provide a link | 229 # The 'projectURL' string will be used to provide a link |
| 229 # from buildbot HTML pages to your project's home page. | 230 # from buildbot HTML pages to your project's home page. |
| 230 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 231 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |