| 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 3145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |