diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 07:08:27 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 07:08:27 +0000 |
commit | 944e9d5495ded27bd4f8be42285d44401a67b760 (patch) | |
tree | 60d1cbbb9f97747e6579da5146ed86e929572bea /chrome/chrome_tests.gypi | |
parent | 9988723b56108bee9f4a210e7b75d920db4cb8b8 (diff) | |
download | chromium_src-944e9d5495ded27bd4f8be42285d44401a67b760.zip chromium_src-944e9d5495ded27bd4f8be42285d44401a67b760.tar.gz chromium_src-944e9d5495ded27bd4f8be42285d44401a67b760.tar.bz2 |
Attemp to fix linking error on Builder Chromium Builder (dbg).
BUG=52555
TEST=Builder Chromium Builder (dbg) links unit_tests
TBR=maruel
Review URL: http://codereview.chromium.org/3194003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_tests.gypi')
-rw-r--r-- | chrome/chrome_tests.gypi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index 4a5473f..860c652 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -1434,7 +1434,9 @@ 'Debug_Base': { 'msvs_settings': { 'VCLinkerTool': { - 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', + # Forcing incremental build off to try to avoid incremental + # linking errors on 64-bit bots too. http://crbug.com/52555 + 'LinkIncremental': '1', }, }, }, |