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 2833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2844 '/wd6326', # Potential comparison of constant with constant | 2844 '/wd6326', # Potential comparison of constant with constant |
2845 '/wd28159', # Consider using 'GetTickCount64' | 2845 '/wd28159', # Consider using 'GetTickCount64' |
2846 '/wd28204', # Inconsistent SAL annotations | 2846 '/wd28204', # Inconsistent SAL annotations |
2847 '/wd28251', # Inconsistent SAL annotations | 2847 '/wd28251', # Inconsistent SAL annotations |
2848 '/wd28252', # Inconsistent SAL annotations | 2848 '/wd28252', # Inconsistent SAL annotations |
2849 '/wd28253', # Inconsistent SAL annotations | 2849 '/wd28253', # Inconsistent SAL annotations |
2850 '/wd28196', # The precondition is not satisfied | 2850 '/wd28196', # The precondition is not satisfied |
2851 '/wd28301', # Inconsistent SAL annotations | 2851 '/wd28301', # Inconsistent SAL annotations |
2852 '/wd6340', # Sign mismatch in function parameter | 2852 '/wd6340', # Sign mismatch in function parameter |
2853 '/wd28182', # Dereferencing NULL pointer | 2853 '/wd28182', # Dereferencing NULL pointer |
| 2854 # C6285 is ~16% of raw warnings and has low value |
| 2855 '/wd6285', # non-zero constant || non-zero constant |
| 2856 # C6334 is ~80% of raw warnings and has low value |
| 2857 '/wd6334', # sizeof applied to an expression with an operator |
2854 ], | 2858 ], |
2855 }, | 2859 }, |
2856 }, | 2860 }, |
2857 }], # win_analyze | 2861 }], # win_analyze |
2858 ], | 2862 ], |
2859 }], # OS==win | 2863 }], # OS==win |
2860 ['chromecast==1', { | 2864 ['chromecast==1', { |
2861 'defines': [ | 2865 'defines': [ |
2862 'LOG_DISABLED=0', | 2866 'LOG_DISABLED=0', |
2863 ], | 2867 ], |
(...skipping 2993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5857 # settings in target dicts. SYMROOT is a special case, because many other | 5861 # settings in target dicts. SYMROOT is a special case, because many other |
5858 # Xcode variables depend on it, including variables such as | 5862 # Xcode variables depend on it, including variables such as |
5859 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5863 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5860 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5864 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5861 # files to appear (when present) in the UI as actual files and not red | 5865 # files to appear (when present) in the UI as actual files and not red |
5862 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5866 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5863 # and therefore SYMROOT, needs to be set at the project level. | 5867 # and therefore SYMROOT, needs to be set at the project level. |
5864 'SYMROOT': '<(DEPTH)/xcodebuild', | 5868 'SYMROOT': '<(DEPTH)/xcodebuild', |
5865 }, | 5869 }, |
5866 } | 5870 } |
OLD | NEW |