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

Unified Diff: breakpad/BUILD.gn

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
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
« no previous file with comments | « base/win/iat_patch_function.cc ('k') | breakpad/breakpad_handler.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: breakpad/BUILD.gn
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn
index 7a1828a611b246692b0e83b43a54f9120858fe08..2ccab3aa017ee48c487fc38cbca7cb7678b6356d 100644
--- a/breakpad/BUILD.gn
+++ b/breakpad/BUILD.gn
@@ -771,6 +771,14 @@ if (is_win) {
"src/common/windows/string_utils-inl.h",
"src/google_breakpad/common/minidump_format.h",
]
+ config("breakpad_handler_warnings") {
+ if (is_clang) {
+ # See https://code.google.com/p/google-breakpad/issues/detail?id=658.
+ cflags = [ "-Wno-reorder" ]
+ }
+ }
+
+ configs += [ ":breakpad_handler_warnings" ]
}
source_set("breakpad_sender") {
« no previous file with comments | « base/win/iat_patch_function.cc ('k') | breakpad/breakpad_handler.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698