| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |