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 4035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4046 ], | 4046 ], |
4047 }], | 4047 }], |
4048 ], | 4048 ], |
4049 'msvs_system_include_dirs': [ | 4049 'msvs_system_include_dirs': [ |
4050 '<(windows_sdk_path)/Include/shared', | 4050 '<(windows_sdk_path)/Include/shared', |
4051 '<(windows_sdk_path)/Include/um', | 4051 '<(windows_sdk_path)/Include/um', |
4052 '<(windows_sdk_path)/Include/winrt', | 4052 '<(windows_sdk_path)/Include/winrt', |
4053 '$(VSInstallDir)/VC/atlmfc/include', | 4053 '$(VSInstallDir)/VC/atlmfc/include', |
4054 ], | 4054 ], |
4055 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 4055 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], |
4056 'msvs_disabled_warnings': [4351, 4396, 4503, 4819, | 4056 'msvs_disabled_warnings': [4351, 4355, 4396, 4503, 4819, |
4057 # TODO(maruel): These warnings are level 4. They will be slowly | 4057 # TODO(maruel): These warnings are level 4. They will be slowly |
4058 # removed as code is fixed. | 4058 # removed as code is fixed. |
4059 4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245, | 4059 4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245, |
4060 4310, 4355, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, | 4060 4310, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, 4702, |
4061 4702, 4706, | 4061 4706, |
4062 ], | 4062 ], |
4063 'msvs_settings': { | 4063 'msvs_settings': { |
4064 'VCCLCompilerTool': { | 4064 'VCCLCompilerTool': { |
4065 'AdditionalOptions': ['/MP'], | 4065 'AdditionalOptions': ['/MP'], |
4066 'MinimalRebuild': 'false', | 4066 'MinimalRebuild': 'false', |
4067 'BufferSecurityCheck': 'true', | 4067 'BufferSecurityCheck': 'true', |
4068 'EnableFunctionLevelLinking': 'true', | 4068 'EnableFunctionLevelLinking': 'true', |
4069 'RuntimeTypeInfo': 'false', | 4069 'RuntimeTypeInfo': 'false', |
4070 'WarningLevel': '4', | 4070 'WarningLevel': '4', |
4071 'WarnAsError': 'true', | 4071 'WarnAsError': 'true', |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4285 # settings in target dicts. SYMROOT is a special case, because many other | 4285 # settings in target dicts. SYMROOT is a special case, because many other |
4286 # Xcode variables depend on it, including variables such as | 4286 # Xcode variables depend on it, including variables such as |
4287 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4287 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4288 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4288 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4289 # files to appear (when present) in the UI as actual files and not red | 4289 # files to appear (when present) in the UI as actual files and not red |
4290 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4290 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4291 # and therefore SYMROOT, needs to be set at the project level. | 4291 # and therefore SYMROOT, needs to be set at the project level. |
4292 'SYMROOT': '<(DEPTH)/xcodebuild', | 4292 'SYMROOT': '<(DEPTH)/xcodebuild', |
4293 }, | 4293 }, |
4294 } | 4294 } |
OLD | NEW |