From f6e2d0eb1da11d203e011d9a0978919a51d483f9 Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Tue, 6 May 2014 15:25:51 +0000 Subject: [PATCH] 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 --- tools/gyp/v8.gyp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', -- 2.7.4