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

Side by Side Diff: scripts/slave/recipes/ios/try.py

Issue 1410743010: Rework iOS recipes to use latest MB approach (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: update w/ cleanup 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 DEPS = [ 5 DEPS = [
6 'gclient', 6 'gclient',
7 'ios', 7 'ios',
8 'json', 8 'json',
9 'platform', 9 'platform',
10 'properties', 10 'properties',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 buildername='ios', 191 buildername='ios',
192 buildnumber='0', 192 buildnumber='0',
193 issue=123456, 193 issue=123456,
194 mastername='tryserver.fake', 194 mastername='tryserver.fake',
195 patchset=1, 195 patchset=1,
196 rietveld='fake://rietveld.url', 196 rietveld='fake://rietveld.url',
197 slavename='fake-vm', 197 slavename='fake-vm',
198 ) 198 )
199 + api.ios.make_test_build_config({ 199 + api.ios.make_test_build_config({
200 'xcode version': 'fake xcode version', 200 'xcode version': 'fake xcode version',
201 'GYP_DEFINES': {}, 201 'GYP_DEFINES': [],
202 'gn_args': [
203 'target_os="ios"',
204 'ios_enable_code_signing=false',
205 ],
206 'mb_type': 'gn',
202 'compiler': 'ninja', 207 'compiler': 'ninja',
203 'configuration': 'Debug', 208 'configuration': 'Debug',
204 'sdk': 'iphonesimulator8.0', 209 'sdk': 'iphonesimulator8.0',
205 'tests': [ 210 'tests': [
206 { 211 {
207 'app': 'fake tests', 212 'app': 'fake tests',
208 'device type': 'fake device', 213 'device type': 'fake device',
209 'os': '8.1', 214 'os': '8.1',
210 }, 215 },
211 ], 216 ],
212 'use_mb': True,
213 }) 217 })
214 ) 218 )
215 219
216 220
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698