From 3a41c8ef2ff227227a1e50e72f2c70a1f3a11add Mon Sep 17 00:00:00 2001 From: "bradnelson@google.com" <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> Date: Mon, 21 Jan 2013 23:23:57 +0000 Subject: Disabling nacl_win64 targets when building in target_arch!=ia32 mode. When building on windows with target_arch=x64, we no longer need win32 targets forced to be 64-bit. This gates out these targets when target_arch!=ia32. (Prior CL dropped the minimal set to break the dependency between these targets and the rest of the build. This eliminates them completely.) BUG=None TEST=None R=jschuh@chromium.org,thestig@chromium.org TBR=darin@chromium.org,abodenha@chromium.org,apatrick@chromium.org,sra@chromium.org,wtc@chromium.org Review URL: https://chromiumcodereview.appspot.com/11929039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177959 0039d316-1c4b-4281-b951-d872f2087c98 --- ipc/ipc.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipc') diff --git a/ipc/ipc.gyp b/ipc/ipc.gyp index c56f68a..edc53a4 100644 --- a/ipc/ipc.gyp +++ b/ipc/ipc.gyp @@ -141,7 +141,7 @@ }, ], 'conditions': [ - ['OS=="win"', { + ['OS=="win" and target_arch=="ia32"', { 'targets': [ { 'target_name': 'ipc_win64', -- cgit v1.1