Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 06306c8934aeac77a07635c8091b39a1f54a768c..67685df142a5d70c5c4ebb06193f94b88b01fda1 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -4664,16 +4664,19 @@ |
# Target both iPhone and iPad. |
'TARGETED_DEVICE_FAMILY': '1,2', |
'VALID_ARCHS': 'armv7 i386', |
- }], |
- ['target_arch=="x64"', { |
- 'ARCHS': [ |
- 'x86_64' |
- ], |
- }], |
- ['target_arch=="ia32"', { |
- 'ARCHS': [ |
- 'i386' |
- ], |
+ }, { |
Mark Mentovai
2013/11/04 20:52:33
Say
}, { # OS!="ios"
on this line, as is often
kiyun
2013/11/04 21:02:19
Done.
|
+ 'conditions': [ |
+ ['target_arch=="x64"', { |
+ 'ARCHS': [ |
+ 'x86_64' |
+ ], |
+ }], |
+ ['target_arch=="ia32"', { |
+ 'ARCHS': [ |
+ 'i386' |
+ ], |
+ }], |
+ ], |
}], |
], |