summaryrefslogtreecommitdiffstats
path: root/build/common.gypi
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-18 18:30:06 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-18 18:30:06 +0000
commit5ab8f48e3edea9bfa6a26bdf8b7767f62e76b82a (patch)
treefdcb519c55e36659401a81ddd0ac6ec04098058c /build/common.gypi
parent159407f4e3b39981c6fd4c883eefdfa56e4b8cea (diff)
downloadchromium_src-5ab8f48e3edea9bfa6a26bdf8b7767f62e76b82a.zip
chromium_src-5ab8f48e3edea9bfa6a26bdf8b7767f62e76b82a.tar.gz
chromium_src-5ab8f48e3edea9bfa6a26bdf8b7767f62e76b82a.tar.bz2
restore OutputFile for chrome.exe, do moving hardlink on dll instead
Hardlink from different dir for chrome.exe caused annoyance when running from Visual Studio because $(TargetPath) the default in the .user file is not the correct path. So, instead do the hardlink on the dll. To avoid the possible expense on non-NTFS, and to enable a trybot in the future, do this hardlink based on a gyp define. BUG=92528, 92685 TEST=No link problems Review URL: http://codereview.chromium.org/7670031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r--build/common.gypi4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index b6b2444..8d507cc 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -397,6 +397,10 @@
# Needed for some of the largest modules.
'msvs_debug_link_nonincremental%': '1',
+ # Turn on Use Library Dependency Inputs for linking chrome.dll on Windows
+ # to get incremental linking to be faster in debug builds.
+ 'incremental_chrome_dll%': 0,
+
# This is the location of the sandbox binary. Chrome looks for this before
# running the zygote process. If found, and SUID, it will be used to
# sandbox the zygote process and, thus, all renderer processes.