blob: c7232845da618d1741c443c741adcef19dbd0bfb [file] [log] [blame]
maruel@chromium.org6bde8112014-01-22 18:05:59 +09001# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4{
maruel@chromium.org6bde8112014-01-22 18:05:59 +09005 'includes': [
maruel@chromium.org4b87b3e2014-02-06 08:33:48 +09006 # While the target 'base' doesn't depend on ../third_party/icu/icu.gyp
7 # itself, virtually all targets using it has to include icu. The only
8 # exception is the Windows sandbox (?).
maruel@chromium.org6bde8112014-01-22 18:05:59 +09009 '../third_party/icu/icu.isolate',
10 ],
kbr@chromium.org93b32652014-05-29 04:05:35 +090011 'conditions': [
scheib@chromium.org95072892014-07-08 21:46:13 +090012 ['OS=="win" and component=="shared_library" and CONFIGURATION_NAME=="Debug"', {
kbr@chromium.org93b32652014-05-29 04:05:35 +090013 'variables': {
14 'isolate_dependency_tracked': [
15 # Copy the VS runtime DLLs into the isolate so that they
scheib@chromium.org95072892014-07-08 21:46:13 +090016 # don't have to be preinstalled on the target machine.
kbr@chromium.org93b32652014-05-29 04:05:35 +090017 '<(PRODUCT_DIR)/msvcp120d.dll',
kbr@chromium.org93b32652014-05-29 04:05:35 +090018 '<(PRODUCT_DIR)/msvcr120d.dll',
scheib@chromium.org95072892014-07-08 21:46:13 +090019 ],
20 },
21 }],
22 ['OS=="win" and component=="shared_library" and CONFIGURATION_NAME=="Release"', {
23 'variables': {
24 'isolate_dependency_tracked': [
25 # Copy the VS runtime DLLs into the isolate so that they
26 # don't have to be preinstalled on the target machine.
27 '<(PRODUCT_DIR)/msvcp120.dll',
kbr@chromium.org93b32652014-05-29 04:05:35 +090028 '<(PRODUCT_DIR)/msvcr120.dll',
29 ],
30 },
31 }],
32 ],
maruel@chromium.org6bde8112014-01-22 18:05:59 +090033}