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

Side by Side Diff: build/common.gypi

Issue 1175393003: Experimentally add /analyze:max_paths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | 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 2875 matching lines...) Expand 10 before | Expand all | Expand 10 after
2886 'VCCLCompilerTool': { 2886 'VCCLCompilerTool': {
2887 # Set WarnAsError to false to disable this setting for most 2887 # Set WarnAsError to false to disable this setting for most
2888 # projects so that compilation continues. 2888 # projects so that compilation continues.
2889 'WarnAsError': 'false', 2889 'WarnAsError': 'false',
2890 # When win_analyze is specified add the /analyze switch. 2890 # When win_analyze is specified add the /analyze switch.
2891 # Also add /WX- to force-disable WarnAsError for projects that 2891 # Also add /WX- to force-disable WarnAsError for projects that
2892 # override WarnAsError. 2892 # override WarnAsError.
2893 # Also, disable various noisy warnings that have low value. 2893 # Also, disable various noisy warnings that have low value.
2894 'AdditionalOptions': [ 2894 'AdditionalOptions': [
2895 '/analyze', 2895 '/analyze',
2896 '/analyze:max_paths 1000000',
2896 '/WX-', 2897 '/WX-',
2897 '/wd6011', # Dereferencing NULL pointer 2898 '/wd6011', # Dereferencing NULL pointer
2898 '/wd6312', # Possible infinite loop: use of the constant 2899 '/wd6312', # Possible infinite loop: use of the constant
2899 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter 2900 # EXCEPTION_CONTINUE_EXECUTION in the exception-filter
2900 '/wd6326', # Potential comparison of constant with constant 2901 '/wd6326', # Potential comparison of constant with constant
2901 '/wd28159', # Consider using 'GetTickCount64' 2902 '/wd28159', # Consider using 'GetTickCount64'
2902 '/wd28204', # Inconsistent SAL annotations 2903 '/wd28204', # Inconsistent SAL annotations
2903 '/wd28251', # Inconsistent SAL annotations 2904 '/wd28251', # Inconsistent SAL annotations
2904 '/wd28252', # Inconsistent SAL annotations 2905 '/wd28252', # Inconsistent SAL annotations
2905 '/wd28253', # Inconsistent SAL annotations 2906 '/wd28253', # Inconsistent SAL annotations
(...skipping 3292 matching lines...) Expand 10 before | Expand all | Expand 10 after
6198 # settings in target dicts. SYMROOT is a special case, because many other 6199 # settings in target dicts. SYMROOT is a special case, because many other
6199 # Xcode variables depend on it, including variables such as 6200 # Xcode variables depend on it, including variables such as
6200 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6201 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6201 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6202 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6202 # files to appear (when present) in the UI as actual files and not red 6203 # files to appear (when present) in the UI as actual files and not red
6203 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6204 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6204 # and therefore SYMROOT, needs to be set at the project level. 6205 # and therefore SYMROOT, needs to be set at the project level.
6205 'SYMROOT': '<(DEPTH)/xcodebuild', 6206 'SYMROOT': '<(DEPTH)/xcodebuild',
6206 }, 6207 },
6207 } 6208 }
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