| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 {'name': 'linux32_dbg', 'slavebuilddir': 'linux32'}, | 88 {'name': 'linux32_dbg', 'slavebuilddir': 'linux32'}, |
| 89 {'name': 'linux32_rel', 'slavebuilddir': 'linux32'}, | 89 {'name': 'linux32_rel', 'slavebuilddir': 'linux32'}, |
| 90 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, | 90 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, |
| 91 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, | 91 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, |
| 92 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 92 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 93 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 93 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 94 {'name': 'linux_arm', 'slavebuilddir': 'linux_arm'}, | 94 {'name': 'linux_arm', 'slavebuilddir': 'linux_arm'}, |
| 95 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 95 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| 96 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, | 96 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, |
| 97 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 97 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 98 { |
| 99 'name': 'linux_more_configs', |
| 100 'recipe': 'webrtc/more_configs', |
| 101 'slavebuilddir': 'linux64', |
| 102 }, |
| 98 {'name': 'linux_gyp_dbg', 'slavebuilddir': 'linux64_gyp'}, | 103 {'name': 'linux_gyp_dbg', 'slavebuilddir': 'linux64_gyp'}, |
| 99 {'name': 'linux_gyp_rel', 'slavebuilddir': 'linux64_gyp'}, | 104 {'name': 'linux_gyp_rel', 'slavebuilddir': 'linux64_gyp'}, |
| 100 { | 105 { |
| 101 'name': 'linux_libfuzzer_rel', | 106 'name': 'linux_libfuzzer_rel', |
| 102 'recipe': 'webrtc/libfuzzer', | 107 'recipe': 'webrtc/libfuzzer', |
| 103 'slavebuilddir': 'linux64_libfuzzer', | 108 'slavebuilddir': 'linux64_libfuzzer', |
| 104 }, | 109 }, |
| 105 {'name': 'linux_swarming', 'slavebuilddir': 'linux64_swarming'}, | 110 {'name': 'linux_swarming', 'slavebuilddir': 'linux64_swarming'}, |
| 106 {'name': 'android_compile_dbg', 'slavebuilddir': 'android'}, | 111 {'name': 'android_compile_dbg', 'slavebuilddir': 'android'}, |
| 107 {'name': 'android_compile_rel', 'slavebuilddir': 'android'}, | 112 {'name': 'android_compile_rel', 'slavebuilddir': 'android'}, |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 # Must be at least 2x the number of slaves. | 253 # Must be at least 2x the number of slaves. |
| 249 c['eventHorizon'] = 100 | 254 c['eventHorizon'] = 100 |
| 250 # Must be at least 2x the number of on-going builds. | 255 # Must be at least 2x the number of on-going builds. |
| 251 c['buildCacheSize'] = 100 | 256 c['buildCacheSize'] = 100 |
| 252 | 257 |
| 253 ####### PROJECT IDENTITY | 258 ####### PROJECT IDENTITY |
| 254 | 259 |
| 255 # The 'projectURL' string will be used to provide a link | 260 # The 'projectURL' string will be used to provide a link |
| 256 # from buildbot HTML pages to your project's home page. | 261 # from buildbot HTML pages to your project's home page. |
| 257 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 262 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |