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 5736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5747 # to use setjmp/longjmp for e.g. JPEG decode error handling, which | 5747 # to use setjmp/longjmp for e.g. JPEG decode error handling, which |
5748 # means we have to turn off this warning (and be careful about how | 5748 # means we have to turn off this warning (and be careful about how |
5749 # object destruction happens in such cases). | 5749 # object destruction happens in such cases). |
5750 4611, | 5750 4611, |
5751 | 5751 |
5752 # TODO(maruel): These warnings are level 4. They will be slowly | 5752 # TODO(maruel): These warnings are level 4. They will be slowly |
5753 # removed as code is fixed. | 5753 # removed as code is fixed. |
5754 4100, # Unreferenced formal parameter | 5754 4100, # Unreferenced formal parameter |
5755 4121, # Alignment of a member was sensitive to packing | 5755 4121, # Alignment of a member was sensitive to packing |
5756 4244, # Conversion from 'type1' to 'type2', possible loss of data | 5756 4244, # Conversion from 'type1' to 'type2', possible loss of data |
5757 4481, # Nonstandard extension used: override specifier 'keyword' | |
5758 4505, # Unreferenced local function has been removed | 5757 4505, # Unreferenced local function has been removed |
5759 4510, # Default constructor could not be generated | 5758 4510, # Default constructor could not be generated |
5760 4512, # Assignment operator could not be generated | 5759 4512, # Assignment operator could not be generated |
5761 4610, # Object can never be instantiated | 5760 4610, # Object can never be instantiated |
5762 4838, # Narrowing conversion. Doesn't seem to be very useful. | 5761 4838, # Narrowing conversion. Doesn't seem to be very useful. |
5763 4995, # 'X': name was marked as #pragma deprecated | 5762 4995, # 'X': name was marked as #pragma deprecated |
5764 4996, # 'X': was declared deprecated (for GetVersionEx). | 5763 4996, # 'X': was declared deprecated (for GetVersionEx). |
5765 | 5764 |
5766 # These are variable shadowing warnings that are new in VS2015. We | 5765 # These are variable shadowing warnings that are new in VS2015. We |
5767 # should work through these at some point -- they may be removed from | 5766 # should work through these at some point -- they may be removed from |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6425 # settings in target dicts. SYMROOT is a special case, because many other | 6424 # settings in target dicts. SYMROOT is a special case, because many other |
6426 # Xcode variables depend on it, including variables such as | 6425 # Xcode variables depend on it, including variables such as |
6427 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6426 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6428 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6427 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6429 # files to appear (when present) in the UI as actual files and not red | 6428 # files to appear (when present) in the UI as actual files and not red |
6430 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6429 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6431 # and therefore SYMROOT, needs to be set at the project level. | 6430 # and therefore SYMROOT, needs to be set at the project level. |
6432 'SYMROOT': '<(DEPTH)/xcodebuild', | 6431 'SYMROOT': '<(DEPTH)/xcodebuild', |
6433 }, | 6432 }, |
6434 } | 6433 } |
OLD | NEW |