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