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

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

Issue 2133483002: Fix configuration of goma in iOS recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: improve wording in comment Created 4 years, 5 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 | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipes/ios/try.expected/gn.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'depot_tools/gclient', 6 'depot_tools/gclient',
7 'ios', 7 'ios',
8 'recipe_engine/json', 8 'recipe_engine/json',
9 'recipe_engine/platform', 9 'recipe_engine/platform',
10 'recipe_engine/properties', 10 'recipe_engine/properties',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'tests': [ 213 'tests': [
214 { 214 {
215 'app': 'fake tests', 215 'app': 'fake tests',
216 'device type': 'fake device', 216 'device type': 'fake device',
217 'os': '8.1', 217 'os': '8.1',
218 }, 218 },
219 ], 219 ],
220 }) 220 })
221 ) 221 )
222 222
223 yield (
224 api.test('gyp_goma')
225 + api.platform('mac', 64)
226 + api.properties(patch_url='patch url')
227 + api.properties(
228 buildername='ios-simulator',
229 buildnumber='0',
230 issue=123456,
231 mastername='tryserver.fake',
232 patchset=1,
233 rietveld='fake://rietveld.url',
234 slavename='fake-vm',
235 )
236 + api.ios.make_test_build_config({
237 'xcode version': 'fake xcode version',
238 'GYP_DEFINES': [
239 'OS=ios',
240 'gomadir=$(goma_dir)',
241 'target_subarch=both',
242 'use_goma=1',
243 ],
244 'gn_args': [
245 ],
246 'use_analyze': True,
247 'mb_type': 'gyp',
248 'compiler': 'ninja',
249 'configuration': 'Debug',
250 'sdk': 'iphonesimulator8.0',
251 'tests': [
252 {
253 'app': 'fake tests',
254 'device type': 'fake device',
255 'os': '8.1',
256 },
257 ],
258 })
259 )
260
223 261
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipes/ios/try.expected/gn.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698