Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: build/config/compiler/BUILD.gn

Issue 533853002: Minor fixes for the GN Windows build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/compiled_action.gni ('k') | components/pdf/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 33d52db4dffbde9cde3d9b51012716984cee911e..b04d6dfe35279fd527035de16bc5e1552b7cd0ea 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -18,16 +18,18 @@ declare_args() {
use_gold = is_linux && cpu_arch == "x64"
-# linux_use_debug_fission: whether to use split DWARF debug info
-# files. This can reduce link time significantly, but is incompatible
-# with some utilities such as icecc and ccache. Requires gold and
-# gcc >= 4.8 or clang.
-# http://gcc.gnu.org/wiki/DebugFission
-#
-# TODO(GYP) enable this. Currently this gives errors from objcopy, presumably
-# because some other symbol or toolchain setting isn't correct.
-#use_debug_fission = use_gold
-use_debug_fission = false
+if (!is_win) {
+ # linux_use_debug_fission: whether to use split DWARF debug info
+ # files. This can reduce link time significantly, but is incompatible
+ # with some utilities such as icecc and ccache. Requires gold and
+ # gcc >= 4.8 or clang.
+ # http://gcc.gnu.org/wiki/DebugFission
+ #
+ # TODO(GYP) enable this. Currently this gives errors from objcopy, presumably
+ # because some other symbol or toolchain setting isn't correct.
+ #use_debug_fission = use_gold
+ use_debug_fission = false
+}
# default_include_dirs ---------------------------------------------------------
#
« no previous file with comments | « build/compiled_action.gni ('k') | components/pdf/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698