From 88bc2cb545294b37548d653394885cf31423e12a Mon Sep 17 00:00:00 2001 From: "jschuh@chromium.org" Date: Sun, 3 Feb 2013 19:30:26 +0000 Subject: Enable BIGOBJ in MSVC for content target Under Win64 builds content exceeds the obj section limit. Eventually we need to enable this in common.gypi, but we need to fix some targets to make them compatible first. BUG=166496, 173851 TBR=jam Review URL: https://chromiumcodereview.appspot.com/12191002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180318 0039d316-1c4b-4281-b951-d872f2087c98 --- content/content.gyp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'content/content.gyp') diff --git a/content/content.gyp b/content/content.gyp index d15f86f..c773d83 100644 --- a/content/content.gyp +++ b/content/content.gyp @@ -22,6 +22,15 @@ '../webkit/support/setup_third_party.gyp:third_party_headers', ], }], + # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. + ['OS=="win" and target_arch=="x64"', { + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': ['/bigobj'], + }, + }, + }], + ], }, 'conditions': [ -- cgit v1.1