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

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

Issue 1226583002: clang/win: Build chromium code without -Wno-incompatible-pointer-types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-logical-op-parentheses
Patch Set: Created 5 years, 6 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
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 09a26a451401057297cbba31da03bcf0015d7a34..cc55e650953fd28762d23fe117b1609dce368881 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -802,7 +802,6 @@ if (is_win) {
"-Wno-empty-body", # http://crbug.com/504661
"-Wno-extra-tokens", # http://crbug.com/504663
"-Wno-ignored-attributes", # http://crbug.com/504695
- "-Wno-incompatible-pointer-types", # http://crbug.com/504696
"-Wno-int-to-void-pointer-cast", # http://crbug.com/504697
"-Wno-invalid-noreturn", # http://crbug.com/504698
"-Wno-logical-op-parentheses", # http://crbug.com/504699
@@ -978,6 +977,10 @@ config("no_chromium_code") {
cflags_cc = []
defines = []
+ if (is_clang) {
+ cflags += [ "-Wno-incompatible-pointer-types" ]
+ }
+
if (is_win) {
cflags += [
"/W3", # Warning level 3.

Powered by Google App Engine
This is Rietveld 408576698