| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 { | 80 { |
| 81 'name': 'ios_api_framework', | 81 'name': 'ios_api_framework', |
| 82 'slavebuilddir': 'mac64', | 82 'slavebuilddir': 'mac64', |
| 83 'recipe': 'webrtc/ios_api_framework', | 83 'recipe': 'webrtc/ios_api_framework', |
| 84 }, | 84 }, |
| 85 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, | 85 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, |
| 86 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, | 86 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, |
| 87 {'name': 'linux_compile_rel', 'slavebuilddir': 'linux64'}, | 87 {'name': 'linux_compile_rel', 'slavebuilddir': 'linux64'}, |
| 88 {'name': 'linux_dbg', 'slavebuilddir': 'linux64'}, | 88 {'name': 'linux_dbg', 'slavebuilddir': 'linux64'}, |
| 89 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, | 89 {'name': 'linux_rel', 'slavebuilddir': 'linux64'}, |
| 90 {'name': 'linux32_dbg', 'slavebuilddir': 'linux32'}, |
| 91 {'name': 'linux32_rel', 'slavebuilddir': 'linux32'}, |
| 90 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, | 92 {'name': 'linux_baremetal', 'slavebuilddir': 'linux64'}, |
| 91 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, | 93 {'name': 'linux_memcheck', 'slavebuilddir': 'linux_memcheck_or_tsan'}, |
| 92 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, | 94 {'name': 'linux_msan', 'slavebuilddir': 'linux_msan'}, |
| 93 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, | 95 {'name': 'linux_tsan2', 'slavebuilddir': 'linux_tsan2'}, |
| 94 {'name': 'linux_arm', 'slavebuilddir': 'linux_arm'}, | 96 {'name': 'linux_arm', 'slavebuilddir': 'linux_arm'}, |
| 95 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, | 97 {'name': 'linux_asan', 'slavebuilddir': 'linux_asan'}, |
| 96 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, | 98 {'name': 'linux_ubsan', 'slavebuilddir': 'linux_ubsan'}, |
| 97 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 99 {'name': 'linux_ubsan_vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 98 {'name': 'linux_gyp_dbg', 'slavebuilddir': 'linux64_gyp'}, | 100 {'name': 'linux_gyp_dbg', 'slavebuilddir': 'linux64_gyp'}, |
| 99 {'name': 'linux_gyp_rel', 'slavebuilddir': 'linux64_gyp'}, | 101 {'name': 'linux_gyp_rel', 'slavebuilddir': 'linux64_gyp'}, |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 # Must be at least 2x the number of slaves. | 251 # Must be at least 2x the number of slaves. |
| 250 c['eventHorizon'] = 100 | 252 c['eventHorizon'] = 100 |
| 251 # Must be at least 2x the number of on-going builds. | 253 # Must be at least 2x the number of on-going builds. |
| 252 c['buildCacheSize'] = 100 | 254 c['buildCacheSize'] = 100 |
| 253 | 255 |
| 254 ####### PROJECT IDENTITY | 256 ####### PROJECT IDENTITY |
| 255 | 257 |
| 256 # The 'projectURL' string will be used to provide a link | 258 # The 'projectURL' string will be used to provide a link |
| 257 # from buildbot HTML pages to your project's home page. | 259 # from buildbot HTML pages to your project's home page. |
| 258 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 260 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |