| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 ####### BUILDERS | 43 ####### BUILDERS |
| 44 | 44 |
| 45 # Recipe based builders. | 45 # Recipe based builders. |
| 46 specs = [ | 46 specs = [ |
| 47 {'name': 'win', 'slavebuilddir': 'win'}, | 47 {'name': 'win', 'slavebuilddir': 'win'}, |
| 48 {'name': 'win_rel', 'slavebuilddir': 'win'}, | 48 {'name': 'win_rel', 'slavebuilddir': 'win'}, |
| 49 {'name': 'win_x64_rel', 'slavebuilddir': 'win'}, | 49 {'name': 'win_x64_rel', 'slavebuilddir': 'win'}, |
| 50 {'name': 'win_x64_gn', 'slavebuilddir': 'win_gn'}, | 50 {'name': 'win_x64_gn', 'slavebuilddir': 'win_gn'}, |
| 51 {'name': 'win_x64_gn_rel', 'slavebuilddir': 'win_gn'}, | 51 {'name': 'win_x64_gn_rel', 'slavebuilddir': 'win_gn'}, |
| 52 {'name': 'win_baremetal', 'slavebuilddir': 'win'}, | 52 {'name': 'win_baremetal', 'slavebuilddir': 'win'}, |
| 53 {'name': 'win_asan', 'slavebuilddir': 'win_asan'}, | |
| 54 {'name': 'win_drmemory_light', 'slavebuilddir': 'win-drmemory'}, | 53 {'name': 'win_drmemory_light', 'slavebuilddir': 'win-drmemory'}, |
| 55 {'name': 'win_drmemory_full', 'slavebuilddir': 'win-drmemory'}, | 54 {'name': 'win_drmemory_full', 'slavebuilddir': 'win-drmemory'}, |
| 56 {'name': 'mac', 'slavebuilddir': 'mac32'}, | 55 {'name': 'mac', 'slavebuilddir': 'mac32'}, |
| 57 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, | 56 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, |
| 58 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, | 57 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, |
| 59 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'}, | 58 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'}, |
| 60 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, | 59 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, |
| 61 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, | 60 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, |
| 62 {'name': 'ios', 'slavebuilddir': 'mac32'}, | 61 {'name': 'ios', 'slavebuilddir': 'mac32'}, |
| 63 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, | 62 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 # Must be at least 2x the number of slaves. | 191 # Must be at least 2x the number of slaves. |
| 193 c['eventHorizon'] = 100 | 192 c['eventHorizon'] = 100 |
| 194 # Must be at least 2x the number of on-going builds. | 193 # Must be at least 2x the number of on-going builds. |
| 195 c['buildCacheSize'] = 100 | 194 c['buildCacheSize'] = 100 |
| 196 | 195 |
| 197 ####### PROJECT IDENTITY | 196 ####### PROJECT IDENTITY |
| 198 | 197 |
| 199 # The 'projectURL' string will be used to provide a link | 198 # The 'projectURL' string will be used to provide a link |
| 200 # from buildbot HTML pages to your project's home page. | 199 # from buildbot HTML pages to your project's home page. |
| 201 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 200 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |