Index: base/BUILD.gn |
diff --git a/base/BUILD.gn b/base/BUILD.gn |
index 8a32ed63f9da2419ead6382e11fa12b5577b77c1..3d20594fc157e6e1986d3027113b75345048d236 100644 |
--- a/base/BUILD.gn |
+++ b/base/BUILD.gn |
@@ -823,7 +823,7 @@ component("base") { |
} |
configs += [ "//build/config/compiler:wexit_time_destructors" ] |
- if (is_android && !is_debug) { |
+ if (!is_debug) { |
configs -= [ "//build/config/compiler:optimize" ] |
configs += [ "//build/config/compiler:optimize_max" ] |
} |
@@ -842,7 +842,7 @@ source_set("base_static") { |
"win/pe_image.h", |
] |
- if (is_android && !is_debug) { |
+ if (!is_debug) { |
configs -= [ "//build/config/compiler:optimize" ] |
configs += [ "//build/config/compiler:optimize_max" ] |
} |
@@ -895,7 +895,7 @@ component("i18n") { |
"//third_party/icu", |
] |
- if (is_android && !is_debug) { |
+ if (!is_debug) { |
configs -= [ "//build/config/compiler:optimize" ] |
configs += [ "//build/config/compiler:optimize_max" ] |
} |
@@ -1007,7 +1007,7 @@ component("prefs") { |
":base", |
] |
- if (is_android && !is_debug) { |
+ if (!is_debug) { |
configs -= [ "//build/config/compiler:optimize" ] |
configs += [ "//build/config/compiler:optimize_max" ] |
} |