| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/nacl/config.gni") | 8 import("//build/config/nacl/config.gni") |
| 9 import("//build/toolchain/ccache.gni") | 9 import("//build/toolchain/ccache.gni") |
| 10 | 10 |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 # use setjmp/longjmp for e.g. JPEG decode error handling, which means we | 725 # use setjmp/longjmp for e.g. JPEG decode error handling, which means we |
| 726 # have to turn off this warning (and be careful about how object | 726 # have to turn off this warning (and be careful about how object |
| 727 # destruction happens in such cases). | 727 # destruction happens in such cases). |
| 728 "/wd4611", | 728 "/wd4611", |
| 729 | 729 |
| 730 # Warnings to evaluate and possibly fix/reenable later: | 730 # Warnings to evaluate and possibly fix/reenable later: |
| 731 | 731 |
| 732 "/wd4100", # Unreferenced formal function parameter. | 732 "/wd4100", # Unreferenced formal function parameter. |
| 733 "/wd4121", # Alignment of a member was sensitive to packing. | 733 "/wd4121", # Alignment of a member was sensitive to packing. |
| 734 "/wd4244", # Conversion: possible loss of data. | 734 "/wd4244", # Conversion: possible loss of data. |
| 735 "/wd4481", # Nonstandard extension: override specifier. | |
| 736 "/wd4505", # Unreferenced local function has been removed. | 735 "/wd4505", # Unreferenced local function has been removed. |
| 737 "/wd4510", # Default constructor could not be generated. | 736 "/wd4510", # Default constructor could not be generated. |
| 738 "/wd4512", # Assignment operator could not be generated. | 737 "/wd4512", # Assignment operator could not be generated. |
| 739 "/wd4610", # Class can never be instantiated, constructor required. | 738 "/wd4610", # Class can never be instantiated, constructor required. |
| 740 "/wd4838", # Narrowing conversion. Doesn't seem to be very useful. | 739 "/wd4838", # Narrowing conversion. Doesn't seem to be very useful. |
| 741 "/wd4995", # 'X': name was marked as #pragma deprecated | 740 "/wd4995", # 'X': name was marked as #pragma deprecated |
| 742 "/wd4996", # Deprecated function warning. | 741 "/wd4996", # Deprecated function warning. |
| 743 | 742 |
| 744 # These are variable shadowing warnings that are new in VS2015. We | 743 # These are variable shadowing warnings that are new in VS2015. We |
| 745 # should work through these at some point -- they may be removed from | 744 # should work through these at some point -- they may be removed from |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 if (symbol_level == 0) { | 1307 if (symbol_level == 0) { |
| 1309 configs = [ ":no_symbols" ] | 1308 configs = [ ":no_symbols" ] |
| 1310 } else if (symbol_level == 1) { | 1309 } else if (symbol_level == 1) { |
| 1311 configs = [ ":minimal_symbols" ] | 1310 configs = [ ":minimal_symbols" ] |
| 1312 } else if (symbol_level == 2) { | 1311 } else if (symbol_level == 2) { |
| 1313 configs = [ ":symbols" ] | 1312 configs = [ ":symbols" ] |
| 1314 } else { | 1313 } else { |
| 1315 assert(false) | 1314 assert(false) |
| 1316 } | 1315 } |
| 1317 } | 1316 } |
| OLD | NEW |