| 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 if (current_cpu == "arm") { | 7 if (current_cpu == "arm") { |
| 7 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
| 8 } | 9 } |
| 9 if (current_cpu == "mipsel" || current_cpu == "mips64el") { | 10 if (current_cpu == "mipsel" || current_cpu == "mips64el") { |
| 10 import("//build/config/mips.gni") | 11 import("//build/config/mips.gni") |
| 11 } | 12 } |
| 12 if (is_posix) { | 13 if (is_posix) { |
| 13 import("//build/config/gcc/gcc_version.gni") | 14 import("//build/config/gcc/gcc_version.gni") |
| 14 } | 15 } |
| 15 | 16 |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 cflags += [ "-gsplit-dwarf" ] | 1088 cflags += [ "-gsplit-dwarf" ] |
| 1088 } | 1089 } |
| 1089 } | 1090 } |
| 1090 } | 1091 } |
| 1091 | 1092 |
| 1092 config("no_symbols") { | 1093 config("no_symbols") { |
| 1093 if (!is_win) { | 1094 if (!is_win) { |
| 1094 cflags = [ "-g0" ] | 1095 cflags = [ "-g0" ] |
| 1095 } | 1096 } |
| 1096 } | 1097 } |
| OLD | NEW |