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

Unified Diff: third_party/mesa/mesa.gyp

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, 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
Index: third_party/mesa/mesa.gyp
diff --git a/third_party/mesa/mesa.gyp b/third_party/mesa/mesa.gyp
index 58c25d2ecf62df85c1766855045d83a925ef662b..903e083976abc42428492e67b5e9839c1ffa8bda 100644
--- a/third_party/mesa/mesa.gyp
+++ b/third_party/mesa/mesa.gyp
@@ -128,6 +128,7 @@
'clang_warning_flags': [
'-Wno-tautological-constant-out-of-range-compare',
'-Wno-mismatched-tags', # Fixed upstream.
+ '-Wno-incompatible-pointer-types',
],
'clang_warning_flags_unset': [
# Don't warn about string->bool used in asserts.
@@ -267,6 +268,7 @@
'-Wno-tautological-constant-out-of-range-compare',
'-Wno-absolute-value', # Fires on st_atom_array.c, might be a bug
'-Wno-mismatched-tags', # Fixed upstream.
+ '-Wno-incompatible-pointer-types',
Nico 2015/07/07 18:25:11 (mesa is usually very good about fixing warnings w
Sam McNally 2015/07/08 00:52:24 Looking into this a bit further, this warning is d
],
'clang_warning_flags_unset': [
# Don't warn about string->bool used in asserts.

Powered by Google App Engine
This is Rietveld 408576698