Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: masters/master.tryserver.webrtc/master.cfg

Issue 1450813002: WebRTC: Update Macs to 10.10 (with Xcode 7) (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Restored templates dirs Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 {'name': 'mac_compile_x64_dbg', 'slavebuilddir': 'mac64'}, 61 {'name': 'mac_compile_x64_dbg', 'slavebuilddir': 'mac64'},
62 {'name': 'mac_compile_x64_rel', 'slavebuilddir': 'mac64'}, 62 {'name': 'mac_compile_x64_rel', 'slavebuilddir': 'mac64'},
63 {'name': 'mac_dbg', 'slavebuilddir': 'mac32'}, 63 {'name': 'mac_dbg', 'slavebuilddir': 'mac32'},
64 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, 64 {'name': 'mac_rel', 'slavebuilddir': 'mac32'},
65 {'name': 'mac_x64_dbg', 'slavebuilddir': 'mac64'}, 65 {'name': 'mac_x64_dbg', 'slavebuilddir': 'mac64'},
66 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, 66 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'},
67 {'name': 'mac_x64_gn_dbg', 'slavebuilddir': 'mac_gn'}, 67 {'name': 'mac_x64_gn_dbg', 'slavebuilddir': 'mac_gn'},
68 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, 68 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'},
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': 'mac_rel_xcode7', 'slavebuilddir': 'mac64'},
72 {'name': 'ios_dbg', 'slavebuilddir': 'mac32'}, 71 {'name': 'ios_dbg', 'slavebuilddir': 'mac32'},
73 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, 72 {'name': 'ios_rel', 'slavebuilddir': 'mac32'},
74 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64'}, 73 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64'},
75 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'}, 74 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64'},
76 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32'}, 75 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32'},
77 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64'}, 76 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64'},
78 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn'}, 77 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn'},
79 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn'}, 78 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn'},
80 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'}, 79 {'name': 'mac_asan', 'slavebuilddir': 'mac_asan'},
81 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'}, 80 {'name': 'linux_compile_dbg', 'slavebuilddir': 'linux64'},
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 # Must be at least 2x the number of slaves. 215 # Must be at least 2x the number of slaves.
217 c['eventHorizon'] = 100 216 c['eventHorizon'] = 100
218 # Must be at least 2x the number of on-going builds. 217 # Must be at least 2x the number of on-going builds.
219 c['buildCacheSize'] = 100 218 c['buildCacheSize'] = 100
220 219
221 ####### PROJECT IDENTITY 220 ####### PROJECT IDENTITY
222 221
223 # The 'projectURL' string will be used to provide a link 222 # The 'projectURL' string will be used to provide a link
224 # from buildbot HTML pages to your project's home page. 223 # from buildbot HTML pages to your project's home page.
225 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 224 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698