Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Side by Side Diff: build/common.gypi

Issue 740603002: win: use /maxilksize on link to avoid LNK1248 'exceeds maximum allowable size (80000000)' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 3145 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 'ole32.lib', 3156 'ole32.lib',
3157 'oleaut32.lib', 3157 'oleaut32.lib',
3158 'user32.lib', 3158 'user32.lib',
3159 'uuid.lib', 3159 'uuid.lib',
3160 'odbc32.lib', 3160 'odbc32.lib',
3161 'odbccp32.lib', 3161 'odbccp32.lib',
3162 'delayimp.lib', 3162 'delayimp.lib',
3163 'credui.lib', 3163 'credui.lib',
3164 'netapi32.lib', 3164 'netapi32.lib',
3165 ], 3165 ],
3166 'AdditionalOptions': [
3167 # Suggested by Microsoft Devrel to avoid
3168 # LINK : fatal error LNK1248: image size (80000000) exceeds maxi mum allowable size (80000000)
3169 # which started happening more regularly after VS2013 Update 4.
3170 '/maxilksize:2147483647',
3171 ],
3166 }, 3172 },
3167 }, 3173 },
3168 }, 3174 },
3169 'x86_Base': { 3175 'x86_Base': {
3170 'abstract': 1, 3176 'abstract': 1,
3171 'msvs_settings': { 3177 'msvs_settings': {
3172 'VCLinkerTool': { 3178 'VCLinkerTool': {
3173 'MinimumRequiredVersion': '5.01', # XP. 3179 'MinimumRequiredVersion': '5.01', # XP.
3174 'TargetMachine': '1', 3180 'TargetMachine': '1',
3175 }, 3181 },
(...skipping 2674 matching lines...) Expand 10 before | Expand all | Expand 10 after
5850 # settings in target dicts. SYMROOT is a special case, because many other 5856 # settings in target dicts. SYMROOT is a special case, because many other
5851 # Xcode variables depend on it, including variables such as 5857 # Xcode variables depend on it, including variables such as
5852 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5858 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5853 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5859 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5854 # files to appear (when present) in the UI as actual files and not red 5860 # files to appear (when present) in the UI as actual files and not red
5855 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5861 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5856 # and therefore SYMROOT, needs to be set at the project level. 5862 # and therefore SYMROOT, needs to be set at the project level.
5857 'SYMROOT': '<(DEPTH)/xcodebuild', 5863 'SYMROOT': '<(DEPTH)/xcodebuild',
5858 }, 5864 },
5859 } 5865 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698