summaryrefslogtreecommitdiffstats
path: root/sandbox
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 01:40:48 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 01:40:48 +0000
commit825ff8d48aee34b10ef6198743755b88c01a0e6b (patch)
treea08c571253f6e145165ba23a3e22ea33e4fb7aef /sandbox
parent973ef14dea54da60ba038a1c7e27b84973f2a7bc (diff)
downloadchromium_src-825ff8d48aee34b10ef6198743755b88c01a0e6b.zip
chromium_src-825ff8d48aee34b10ef6198743755b88c01a0e6b.tar.gz
chromium_src-825ff8d48aee34b10ef6198743755b88c01a0e6b.tar.bz2
Explicitly enable /INCREMENTAL linking for gyp-generated Debug builds.
Explicitly disable it (/INCREMENTAL:NO) for Release, and for the following targets that require it: chrome.dll interactive_ui_tests.exe perf_tests.exe unit_tests.exe Explicitly specificy /SUBSYSTEM:CONSOLE as default for linking, and match current practice by overriding with /SUBSYSTEM:WINDOWS for: chrome.exe chrome.dll media_player.exe sandbox_poc.exe TEST=none BUG=none Review URL: http://codereview.chromium.org/115664 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16698 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/sandbox.gyp5
1 files changed, 5 insertions, 0 deletions
diff --git a/sandbox/sandbox.gyp b/sandbox/sandbox.gyp
index 937f8df..b9506bb 100644
--- a/sandbox/sandbox.gyp
+++ b/sandbox/sandbox.gyp
@@ -283,6 +283,11 @@
'-lcomctl32.lib',
],
},
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
+ },
+ },
'configurations': {
'Debug': {
'msvs_precompiled_header': 'sandbox_poc/stdafx.h',