| 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 if (current_cpu == "arm") { | 7 if (current_cpu == "arm") { |
| 8 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
| 9 } | 9 } |
| 10 if (current_cpu == "mipsel" || current_cpu == "mips64el") { | 10 if (current_cpu == "mipsel" || current_cpu == "mips64el") { |
| (...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 "-Wno-msvc-include", # http://crbug.com/505299 | 815 "-Wno-msvc-include", # http://crbug.com/505299 |
| 816 "-Wno-overloaded-virtual", # http://crbug.com/505301 | 816 "-Wno-overloaded-virtual", # http://crbug.com/505301 |
| 817 "-Wno-parentheses", # http://crbug.com/505302 | 817 "-Wno-parentheses", # http://crbug.com/505302 |
| 818 "-Wno-pointer-sign", # http://crbug.com/505303 | 818 "-Wno-pointer-sign", # http://crbug.com/505303 |
| 819 "-Wno-reorder", # http://crbug.com/505304 | 819 "-Wno-reorder", # http://crbug.com/505304 |
| 820 "-Wno-return-type-c-linkage", # http://crbug.com/505305 | 820 "-Wno-return-type-c-linkage", # http://crbug.com/505305 |
| 821 "-Wno-self-assign", # http://crbug.com/505306 | 821 "-Wno-self-assign", # http://crbug.com/505306 |
| 822 "-Wno-sometimes-uninitialized", # http://crbug.com/505307 | 822 "-Wno-sometimes-uninitialized", # http://crbug.com/505307 |
| 823 "-Wno-switch", # http://crbug.com/505308 | 823 "-Wno-switch", # http://crbug.com/505308 |
| 824 "-Wno-unknown-pragmas", # http://crbug.com/505314 | 824 "-Wno-unknown-pragmas", # http://crbug.com/505314 |
| 825 "-Wno-unsequenced", # http://crbug.com/505315 | |
| 826 "-Wno-unused-function", # http://crbug.com/505316 | 825 "-Wno-unused-function", # http://crbug.com/505316 |
| 827 "-Wno-unused-private-field", # http://crbug.com/505317 | 826 "-Wno-unused-private-field", # http://crbug.com/505317 |
| 828 "-Wno-unused-value", # http://crbug.com/505318 | 827 "-Wno-unused-value", # http://crbug.com/505318 |
| 829 "-Wno-unused-variable", # http://crbug.com/505319 | 828 "-Wno-unused-variable", # http://crbug.com/505319 |
| 830 "-Wno-unused-local-typedef", # http://crbug.com/411648 | 829 "-Wno-unused-local-typedef", # http://crbug.com/411648 |
| 831 ] | 830 ] |
| 832 } | 831 } |
| 833 } else { | 832 } else { |
| 834 # Common GCC warning setup. | 833 # Common GCC warning setup. |
| 835 default_warning_flags += [ | 834 default_warning_flags += [ |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 cflags += [ "-gsplit-dwarf" ] | 1243 cflags += [ "-gsplit-dwarf" ] |
| 1245 } | 1244 } |
| 1246 } | 1245 } |
| 1247 } | 1246 } |
| 1248 | 1247 |
| 1249 config("no_symbols") { | 1248 config("no_symbols") { |
| 1250 if (!is_win) { | 1249 if (!is_win) { |
| 1251 cflags = [ "-g0" ] | 1250 cflags = [ "-g0" ] |
| 1252 } | 1251 } |
| 1253 } | 1252 } |
| OLD | NEW |