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 if (current_cpu == "arm") { | 6 if (current_cpu == "arm") { |
7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
8 } | 8 } |
9 if (current_cpu == "mipsel" || current_cpu == "mips64el") { | 9 if (current_cpu == "mipsel" || current_cpu == "mips64el") { |
10 import("//build/config/mips.gni") | 10 import("//build/config/mips.gni") |
(...skipping 30 matching lines...) Expand all Loading... | |
41 # address space, and it doesn't support cross-compiling). | 41 # address space, and it doesn't support cross-compiling). |
42 use_gold = is_linux && current_cpu == "x64" | 42 use_gold = is_linux && current_cpu == "x64" |
43 | 43 |
44 # use_debug_fission: whether to use split DWARF debug info | 44 # use_debug_fission: whether to use split DWARF debug info |
45 # files. This can reduce link time significantly, but is incompatible | 45 # files. This can reduce link time significantly, but is incompatible |
46 # with some utilities such as icecc and ccache. Requires gold and | 46 # with some utilities such as icecc and ccache. Requires gold and |
47 # gcc >= 4.8 or clang. | 47 # gcc >= 4.8 or clang. |
48 # http://gcc.gnu.org/wiki/DebugFission | 48 # http://gcc.gnu.org/wiki/DebugFission |
49 use_debug_fission = | 49 use_debug_fission = |
50 !is_win && use_gold && linux_use_bundled_binutils && !use_ccache | 50 !is_win && use_gold && linux_use_bundled_binutils && !use_ccache |
51 | |
52 # Whether the VS xtree header has been patched to disable warning 4702. If | |
53 # it has, then we don't need to disable 4702 (unreachable code warning). | |
54 # The patch is preapplied to the internal toolchain and hence all bots. | |
55 msvs_xtree_patched = false | |
brettw
2015/03/02 19:14:26
Can you wrap this comment + arg in an is_win condi
| |
51 } | 56 } |
52 | 57 |
53 # default_include_dirs --------------------------------------------------------- | 58 # default_include_dirs --------------------------------------------------------- |
54 # | 59 # |
55 # This is a separate config so that third_party code (which would not use the | 60 # This is a separate config so that third_party code (which would not use the |
56 # source root and might have conflicting versions of some headers) can remove | 61 # source root and might have conflicting versions of some headers) can remove |
57 # this and specify their own include paths. | 62 # this and specify their own include paths. |
58 config("default_include_dirs") { | 63 config("default_include_dirs") { |
59 include_dirs = [ | 64 include_dirs = [ |
60 "//", | 65 "//", |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
768 "/wd4100", # Unreferenced formal function parameter. | 773 "/wd4100", # Unreferenced formal function parameter. |
769 "/wd4121", # Alignment of a member was sensitive to packing. | 774 "/wd4121", # Alignment of a member was sensitive to packing. |
770 "/wd4244", # Conversion: possible loss of data. | 775 "/wd4244", # Conversion: possible loss of data. |
771 "/wd4481", # Nonstandard extension: override specifier. | 776 "/wd4481", # Nonstandard extension: override specifier. |
772 "/wd4505", # Unreferenced local function has been removed. | 777 "/wd4505", # Unreferenced local function has been removed. |
773 "/wd4510", # Default constructor could not be generated. | 778 "/wd4510", # Default constructor could not be generated. |
774 "/wd4512", # Assignment operator could not be generated. | 779 "/wd4512", # Assignment operator could not be generated. |
775 "/wd4610", # Class can never be instantiated, constructor required. | 780 "/wd4610", # Class can never be instantiated, constructor required. |
776 "/wd4996", # Deprecated function warning. | 781 "/wd4996", # Deprecated function warning. |
777 ] | 782 ] |
783 | |
784 # VS xtree header file needs to be patched or 4702 (unreachable code | |
785 # warning) is reported if _HAS_EXCEPTIONS=0. Disable the warning if xtree is | |
786 # not patched. | |
787 if (!msvs_xtree_patched) { | |
788 if (exec_script("../../win_is_xtree_patched.py", [], "value") == 1) { | |
789 msvs_xtree_patched = true | |
790 } else { | |
791 cflags += [ "/wd4702" ] # Unreachable code. | |
792 } | |
793 } | |
778 } else { | 794 } else { |
779 # Common GCC warning setup. | 795 # Common GCC warning setup. |
780 cflags = [ | 796 cflags = [ |
781 # Enables. | 797 # Enables. |
782 "-Wendif-labels", # Weird old-style text after an #endif. | 798 "-Wendif-labels", # Weird old-style text after an #endif. |
783 "-Werror", # Warnings as errors. | 799 "-Werror", # Warnings as errors. |
784 | 800 |
785 # Disables. | 801 # Disables. |
786 "-Wno-missing-field-initializers", # "struct foo f = {0};" | 802 "-Wno-missing-field-initializers", # "struct foo f = {0};" |
787 "-Wno-unused-parameter", # Unused function parameters. | 803 "-Wno-unused-parameter", # Unused function parameters. |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1081 cflags += [ "-gsplit-dwarf" ] | 1097 cflags += [ "-gsplit-dwarf" ] |
1082 } | 1098 } |
1083 } | 1099 } |
1084 } | 1100 } |
1085 | 1101 |
1086 config("no_symbols") { | 1102 config("no_symbols") { |
1087 if (!is_win) { | 1103 if (!is_win) { |
1088 cflags = [ "-g0" ] | 1104 cflags = [ "-g0" ] |
1089 } | 1105 } |
1090 } | 1106 } |
OLD | NEW |