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

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

Issue 422773002: Re-disable warning 4018 in the GN Windows build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 20a8de4133a25e31e8584476bdbe37882c6907be..456ab1958edeedcf6dd59b21420da7d2f46f8b31 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -568,6 +568,11 @@ config("default_warnings") {
# Warnings permanently disabled:
+ # TODO(GYP) The GYP build doesn't have this globally enabled but disabled
Peter Kasting 2014/07/28 11:20:47 Is "doesn't have" here supposed to read "has"? Wh
brettw 2014/07/28 18:05:42 Previously it was globally disabled in the GYP bui
Peter Kasting 2014/07/28 19:20:50 Removing the global one worked because I manually
+ # for a bunch of individual targets. Re-enable this globally when those
+ # targets are fixed.
+ "/wd4018", # Comparing signed and unsigned values.
+
# C4127: conditional expression is constant
# This warning can in theory catch dead code and other problems, but
# triggers in far too many desirable cases where the conditional
« 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