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

Side by Side Diff: build/common.gypi

Issue 176973004: Test run with C4702 enabled Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 4643 matching lines...) Expand 10 before | Expand all | Expand 10 after
4654 '<(windows_sdk_path)/Include/shared', 4654 '<(windows_sdk_path)/Include/shared',
4655 '<(windows_sdk_path)/Include/um', 4655 '<(windows_sdk_path)/Include/um',
4656 '<(windows_sdk_path)/Include/winrt', 4656 '<(windows_sdk_path)/Include/winrt',
4657 '$(VSInstallDir)/VC/atlmfc/include', 4657 '$(VSInstallDir)/VC/atlmfc/include',
4658 ], 4658 ],
4659 'msvs_cygwin_shell': 0, 4659 'msvs_cygwin_shell': 0,
4660 'msvs_disabled_warnings': [4351, 4355, 4396, 4503, 4819, 4660 'msvs_disabled_warnings': [4351, 4355, 4396, 4503, 4819,
4661 # TODO(maruel): These warnings are level 4. They will be slowly 4661 # TODO(maruel): These warnings are level 4. They will be slowly
4662 # removed as code is fixed. 4662 # removed as code is fixed.
4663 4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245, 4663 4100, 4121, 4125, 4127, 4130, 4131, 4189, 4201, 4238, 4244, 4245,
4664 4310, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, 4702, 4664 4310, 4428, 4481, 4505, 4510, 4512, 4530, 4610, 4611, 4701, 4706,
4665 4706,
4666 ], 4665 ],
4667 'msvs_settings': { 4666 'msvs_settings': {
4668 'VCCLCompilerTool': { 4667 'VCCLCompilerTool': {
4669 'AdditionalOptions': ['/MP'], 4668 'AdditionalOptions': ['/MP'],
4670 'MinimalRebuild': 'false', 4669 'MinimalRebuild': 'false',
4671 'BufferSecurityCheck': 'true', 4670 'BufferSecurityCheck': 'true',
4672 'EnableFunctionLevelLinking': 'true', 4671 'EnableFunctionLevelLinking': 'true',
4673 'RuntimeTypeInfo': 'false', 4672 'RuntimeTypeInfo': 'false',
4674 'WarningLevel': '4', 4673 'WarningLevel': '4',
4675 'WarnAsError': 'true', 4674 'WarnAsError': 'false',
4676 'DebugInformationFormat': '3', 4675 'DebugInformationFormat': '3',
4677 'conditions': [ 4676 'conditions': [
4678 ['component=="shared_library"', { 4677 ['component=="shared_library"', {
4679 'ExceptionHandling': '1', # /EHsc 4678 'ExceptionHandling': '1', # /EHsc
4680 }, { 4679 }, {
4681 'ExceptionHandling': '0', 4680 'ExceptionHandling': '0',
4682 }], 4681 }],
4683 ], 4682 ],
4684 }, 4683 },
4685 'VCLibrarianTool': { 4684 'VCLibrarianTool': {
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
5034 # settings in target dicts. SYMROOT is a special case, because many other 5033 # settings in target dicts. SYMROOT is a special case, because many other
5035 # Xcode variables depend on it, including variables such as 5034 # Xcode variables depend on it, including variables such as
5036 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5037 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5038 # files to appear (when present) in the UI as actual files and not red 5037 # files to appear (when present) in the UI as actual files and not red
5039 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5040 # and therefore SYMROOT, needs to be set at the project level. 5039 # and therefore SYMROOT, needs to be set at the project level.
5041 'SYMROOT': '<(DEPTH)/xcodebuild', 5040 'SYMROOT': '<(DEPTH)/xcodebuild',
5042 }, 5041 },
5043 } 5042 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698