diff options
Diffstat (limited to 'build/common_untrusted.gypi')
-rw-r--r-- | build/common_untrusted.gypi | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/build/common_untrusted.gypi b/build/common_untrusted.gypi index 086264e..bcc3686 100644 --- a/build/common_untrusted.gypi +++ b/build/common_untrusted.gypi @@ -10,6 +10,17 @@ ], 'target_defaults': { 'conditions': [ + # TODO(bradnelson): Drop this once the nacl side does the same. + ['target_arch=="x64"', { + 'variables': { + 'enable_x86_32': 0, + }, + }], + ['target_arch=="ia32" and OS!="win"', { + 'variables': { + 'enable_x86_64': 0, + }, + }], ['target_arch=="arm"', { 'variables': { 'clang': 1, @@ -26,4 +37,4 @@ }], ], }, -}
\ No newline at end of file +} |