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

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

Issue 2289423002: iOS: Rename GYP builders for iOS. (Closed)
Patch Set: Created 4 years, 3 months 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
« no previous file with comments | « masters/master.client.webrtc/slaves.cfg ('k') | masters/master.tryserver.webrtc/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 {'name': 'mac_gyp_dbg', 'slavebuilddir': 'mac_gyp'}, 68 {'name': 'mac_gyp_dbg', 'slavebuilddir': 'mac_gyp'},
69 {'name': 'mac_gyp_rel', 'slavebuilddir': 'mac_gyp'}, 69 {'name': 'mac_gyp_rel', 'slavebuilddir': 'mac_gyp'},
70 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, 70 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'},
71 {'name': 'mac_swarming', 'slavebuilddir': 'mac64_swarming'}, 71 {'name': 'mac_swarming', 'slavebuilddir': 'mac64_swarming'},
72 {'name': 'ios_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, 72 {'name': 'ios_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'},
73 {'name': 'ios_rel', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, 73 {'name': 'ios_rel', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'},
74 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, 74 {'name': 'ios_arm64_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'},
75 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, 75 {'name': 'ios_arm64_rel', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'},
76 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'}, 76 {'name': 'ios32_sim_dbg', 'slavebuilddir': 'mac32', 'recipe': 'webrtc/ios'},
77 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'}, 77 {'name': 'ios64_sim_dbg', 'slavebuilddir': 'mac64', 'recipe': 'webrtc/ios'},
78 {'name': 'ios64_gn_dbg', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, 78 {'name': 'ios64_gyp_dbg', 'slavebuilddir': 'mac64_gyp', 'recipe': 'webrtc/ios' },
79 {'name': 'ios64_gn_rel', 'slavebuilddir': 'mac64_gn', 'recipe': 'webrtc/ios'}, 79 {'name': 'ios64_gyp_rel', 'slavebuilddir': 'mac64_gyp', 'recipe': 'webrtc/ios' },
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'},
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 # Must be at least 2x the number of slaves. 249 # Must be at least 2x the number of slaves.
250 c['eventHorizon'] = 100 250 c['eventHorizon'] = 100
251 # Must be at least 2x the number of on-going builds. 251 # Must be at least 2x the number of on-going builds.
252 c['buildCacheSize'] = 100 252 c['buildCacheSize'] = 100
253 253
254 ####### PROJECT IDENTITY 254 ####### PROJECT IDENTITY
255 255
256 # The 'projectURL' string will be used to provide a link 256 # The 'projectURL' string will be used to provide a link
257 # from buildbot HTML pages to your project's home page. 257 # from buildbot HTML pages to your project's home page.
258 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 258 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
OLDNEW
« no previous file with comments | « masters/master.client.webrtc/slaves.cfg ('k') | masters/master.tryserver.webrtc/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698