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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 # for these builds. | 333 # for these builds. |
334 if (is_chrome_branded && is_official_build) { | 334 if (is_chrome_branded && is_official_build) { |
335 cflags += [ | 335 cflags += [ |
336 "-fno-unwind-tables", | 336 "-fno-unwind-tables", |
337 "-fno-asynchronous-unwind-tables", | 337 "-fno-asynchronous-unwind-tables", |
338 ] | 338 ] |
339 defines += [ "NO_UNWIND_TABLES" ] | 339 defines += [ "NO_UNWIND_TABLES" ] |
340 } else { | 340 } else { |
341 cflags += [ "-funwind-tables" ] | 341 cflags += [ "-funwind-tables" ] |
342 } | 342 } |
| 343 |
| 344 if (is_clang && !is_nacl && !is_debug) { |
| 345 # Non-unique section names appears to make linker dead stripping |
| 346 # less effective. See http://crbug.com/483026#c20 |
| 347 # TODO(hans): Remove this if resolved upstream. |
| 348 cflags += [ "-funique-section-names" ] |
| 349 } |
343 } | 350 } |
344 | 351 |
345 # Linux/Android common flags setup. | 352 # Linux/Android common flags setup. |
346 # --------------------------------- | 353 # --------------------------------- |
347 if (is_linux || is_android) { | 354 if (is_linux || is_android) { |
348 cflags += [ | 355 cflags += [ |
349 "-fPIC", | 356 "-fPIC", |
350 "-pipe", # Use pipes for communicating between sub-processes. Faster. | 357 "-pipe", # Use pipes for communicating between sub-processes. Faster. |
351 ] | 358 ] |
352 | 359 |
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 cflags += [ "-gsplit-dwarf" ] | 1107 cflags += [ "-gsplit-dwarf" ] |
1101 } | 1108 } |
1102 } | 1109 } |
1103 } | 1110 } |
1104 | 1111 |
1105 config("no_symbols") { | 1112 config("no_symbols") { |
1106 if (!is_win) { | 1113 if (!is_win) { |
1107 cflags = [ "-g0" ] | 1114 cflags = [ "-g0" ] |
1108 } | 1115 } |
1109 } | 1116 } |
OLD | NEW |