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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
202 'compiler': 'ninja', | 202 'compiler': 'ninja', |
203 'configuration': 'Debug', | 203 'configuration': 'Debug', |
204 'sdk': 'iphonesimulator8.0', | 204 'sdk': 'iphonesimulator8.0', |
205 'tests': [ | 205 'tests': [ |
206 { | 206 { |
207 'app': 'fake tests', | 207 'app': 'fake tests', |
208 'device type': 'fake device', | 208 'device type': 'fake device', |
209 'os': '8.1', | 209 'os': '8.1', |
210 }, | 210 }, |
211 ], | 211 ], |
212 'use_mb': True, | 212 'mb_type': 'gn', |
213 'gn_args': 'target_os="ios" ios_enable_code_signing=false', | |
smut
2015/11/10 22:01:18
Can this be a dict like gyp_defines?
Dirk Pranke
2015/11/10 22:34:15
I actually don't think modeling gyp_defines as a d
smut
2015/11/10 23:25:34
It's hard to parse the diff when someone updates o
Dirk Pranke
2015/11/10 23:59:37
True, that's a good point.
GN actually takes the
smut
2015/11/11 00:08:09
Just add ' '.join(self.__config['gn_args']) in ios
| |
213 }) | 214 }) |
214 ) | 215 ) |
215 | 216 |
216 | 217 |
OLD | NEW |