OLD | NEW |
---|---|
1 { | 1 { |
2 "owners": [ | 2 "owners": [ |
3 "dpranke", | |
3 "smut" | 4 "smut" |
4 ], | 5 ], |
5 "comments": [ | 6 "comments": [ |
6 "Builder for fat binaries using ninja." | 7 "GN + Ninja fat binary builder." |
7 ], | 8 ], |
8 "xcode version": "7.0", | 9 "xcode version": "7.0", |
9 "GYP_DEFINES": { | 10 "GYP_DEFINES": { |
10 "chromium_ios_signing": "0", | 11 "chromium_ios_signing": "0", |
11 "target_subarch": "both" | 12 "target_subarch": "both" |
12 }, | 13 }, |
14 "gn_args": [ | |
15 "target_os=\"ios\"", | |
16 "target_cpu=\"arm\"", | |
17 "ios_enable_code_signing=false" | |
smut
2015/11/18 22:00:29
Reverse the list so this is alphabetical.
The esc
Dirk Pranke
2015/11/18 22:30:27
Okay. I was wondering if you'd want that or not.
| |
18 ], | |
19 "mb_type": "gn", | |
13 "compiler": "ninja", | 20 "compiler": "ninja", |
14 "configuration": "Release", | 21 "configuration": "Release", |
15 "sdk": "iphoneos9.0", | 22 "sdk": "iphoneos9.0", |
16 "tests": [ | 23 "tests": [ |
17 ] | 24 ] |
18 } | 25 } |
OLD | NEW |