OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |