From c4893d87299560b1e899eba67c64f07cdcb0fe82 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 29 Jan 2015 17:29:42 -0800 Subject: [PATCH] win/swarming: Make 64-bit component builds work on swarming. Fun fact: Neither main nor try waterfalls test this configuration yet. Only our poor clang/win fyi bots ran into this. BUG=453657 R=maruel@chromium.org Review URL: https://codereview.chromium.org/888783003 Cr-Commit-Position: refs/heads/master@{#313853} --- base/base.isolate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/base.isolate b/base/base.isolate index e7479695caca..3b99031f7a7a 100644 --- a/base/base.isolate +++ b/base/base.isolate @@ -53,7 +53,7 @@ ], }, }], - ['OS=="win" and component=="shared_library" and CONFIGURATION_NAME=="Debug"', { + ['OS=="win" and component=="shared_library" and (CONFIGURATION_NAME=="Debug" or CONFIGURATION_NAME=="Debug_x64)")', { 'variables': { 'files': [ # Copy the VS runtime DLLs into the isolate so that they @@ -65,7 +65,7 @@ ], }, }], - ['OS=="win" and component=="shared_library" and CONFIGURATION_NAME=="Release"', { + ['OS=="win" and component=="shared_library" and (CONFIGURATION_NAME=="Release" or CONFIGURATION_NAME=="Release_x64")', { 'variables': { 'files': [ # Copy the VS runtime DLLs into the isolate so that they -- 2.11.4.GIT