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

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

Issue 2689793003: Enable string pooling in the no_optimize configuration, under Windows. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | no next file » | 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 8115239fafa7f1f0791b0a2356164a32119ac289..6ed9f28c6bf4e85508c93c41ed45100c170062b4 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1447,6 +1447,7 @@ config("no_optimize") {
cflags = [
"/Od", # Disable optimization.
"/Ob0", # Disable all inlining (on by default).
+ "/GF", # Enable string pooling (off by default).
]
} else if (is_android && !android_full_debug) {
# On Android we kind of optimize some things that don't affect debugging
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698