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

Unified Diff: third_party/iaccessible2/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: rebase 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/iaccessible2/BUILD.gn
diff --git a/third_party/iaccessible2/BUILD.gn b/third_party/iaccessible2/BUILD.gn
index 902667464257dfef2b771b02e4112a2cd6fe80e9..ce1e8c31242487290472c24623f7daf816955a1e 100644
--- a/third_party/iaccessible2/BUILD.gn
+++ b/third_party/iaccessible2/BUILD.gn
@@ -22,8 +22,11 @@ shared_library("IAccessible2Proxy") {
config("IAccessible2Proxy_warnings") {
if (is_clang) {
- # MIDL generated code has a habit of omitting optional braces.
- cflags = [ "-Wno-missing-braces" ]
+ cflags = [
+ # MIDL generated code has a habit of omitting optional braces.
+ "-Wno-missing-braces",
+ "-Wno-incompatible-pointer-types",
+ ]
}
}
configs -= [ "//build/config/compiler:chromium_code" ]

Powered by Google App Engine
This is Rietveld 408576698