From: jochen@chromium.org Date: Tue, 6 May 2014 15:25:51 +0000 (+0000) Subject: Remove strange v8_target_arch=="mac" conditions from gyp files X-Git-Tag: upstream/4.7.83~9243 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6e2d0eb1da11d203e011d9a0978919a51d483f9;p=platform%2Fupstream%2Fv8.git Remove strange v8_target_arch=="mac" conditions from gyp files mac is not an architecture, and it doesn't make sense to compile in both the ia32 and x64 archs at the same time BUG=none R=jkummerow@chromium.org LOG=n Review URL: https://codereview.chromium.org/255183002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21176 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp index 16e1a0d..f1f16c0 100644 --- a/tools/gyp/v8.gyp +++ b/tools/gyp/v8.gyp @@ -696,7 +696,7 @@ '../../src/arm64/utils-arm64.h', ], }], - ['v8_target_arch=="ia32" or v8_target_arch=="mac" or OS=="mac"', { + ['v8_target_arch=="ia32"', { 'sources': [ ### gcmole(arch:ia32) ### '../../src/ia32/assembler-ia32-inl.h', '../../src/ia32/assembler-ia32.cc', @@ -761,7 +761,7 @@ '../../src/mips/stub-cache-mips.cc', ], }], - ['v8_target_arch=="x64" or v8_target_arch=="mac" or OS=="mac"', { + ['v8_target_arch=="x64"', { 'sources': [ ### gcmole(arch:x64) ### '../../src/x64/assembler-x64-inl.h', '../../src/x64/assembler-x64.cc',