Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 06306c8934aeac77a07635c8091b39a1f54a768c..10d2e1c100bd0475e2a308b262a363eec8ade810 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' |
- ], |
+ }, { # OS!="ios" |
+ 'conditions': [ |
+ ['target_arch=="x64"', { |
+ 'ARCHS': [ |
+ 'x86_64' |
+ ], |
Mark Mentovai
2013/11/05 13:48:44
Check the indentation. There’s one space to many o
kiyun
2013/11/05 13:56:24
Done.
|
+ }], |
+ ['target_arch=="ia32"', { |
+ 'ARCHS': [ |
+ 'i386' |
+ ], |
Mark Mentovai
2013/11/05 13:48:44
This one too.
kiyun
2013/11/05 13:56:24
Done.
|
+ }], |
+ ], |
}], |
], |