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

Side by Side Diff: build/common.gypi

Issue 2056033002: Clean Up Remaining Domain Check Call and netapi32.lib Usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@isos
Patch Set: Created 4 years, 6 months 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_browser.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 3174 matching lines...) Expand 10 before | Expand all | Expand 10 after
3185 'advapi32.lib', 3185 'advapi32.lib',
3186 'shell32.lib', 3186 'shell32.lib',
3187 'ole32.lib', 3187 'ole32.lib',
3188 'oleaut32.lib', 3188 'oleaut32.lib',
3189 'user32.lib', 3189 'user32.lib',
3190 'uuid.lib', 3190 'uuid.lib',
3191 'odbc32.lib', 3191 'odbc32.lib',
3192 'odbccp32.lib', 3192 'odbccp32.lib',
3193 'delayimp.lib', 3193 'delayimp.lib',
3194 'credui.lib', 3194 'credui.lib',
3195 'netapi32.lib',
3196 ], 3195 ],
3197 'AdditionalOptions': [ 3196 'AdditionalOptions': [
3198 # Suggested by Microsoft Devrel to avoid 3197 # Suggested by Microsoft Devrel to avoid
3199 # LINK : fatal error LNK1248: image size (80000000) exceeds maxi mum allowable size (80000000) 3198 # LINK : fatal error LNK1248: image size (80000000) exceeds maxi mum allowable size (80000000)
3200 # which started happening more regularly after VS2013 Update 4. 3199 # which started happening more regularly after VS2013 Update 4.
3201 # Needs to be a bit lower for VS2015, or else errors out. 3200 # Needs to be a bit lower for VS2015, or else errors out.
3202 '/maxilksize:0x7ff00000', 3201 '/maxilksize:0x7ff00000',
3203 # Tell the linker to crash on failures. 3202 # Tell the linker to crash on failures.
3204 '/fastfail', 3203 '/fastfail',
3205 ], 3204 ],
(...skipping 3156 matching lines...) Expand 10 before | Expand all | Expand 10 after
6362 # settings in target dicts. SYMROOT is a special case, because many other 6361 # settings in target dicts. SYMROOT is a special case, because many other
6363 # Xcode variables depend on it, including variables such as 6362 # Xcode variables depend on it, including variables such as
6364 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6363 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6365 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6364 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6366 # files to appear (when present) in the UI as actual files and not red 6365 # files to appear (when present) in the UI as actual files and not red
6367 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6366 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6368 # and therefore SYMROOT, needs to be set at the project level. 6367 # and therefore SYMROOT, needs to be set at the project level.
6369 'SYMROOT': '<(DEPTH)/xcodebuild', 6368 'SYMROOT': '<(DEPTH)/xcodebuild',
6370 }, 6369 },
6371 } 6370 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698