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

Unified Diff: build/standalone.gypi

Issue 1094713002: Supress the two noisiest warnings on linux standalone builds. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 5 years, 8 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/standalone.gypi
diff --git a/build/standalone.gypi b/build/standalone.gypi
index 87fe3445ab281ae3ecd9b7d765bc62082cb9d0df..4d7cec5eed24671d137d4451d0000d90f46952e1 100644
--- a/build/standalone.gypi
+++ b/build/standalone.gypi
@@ -144,6 +144,11 @@
'cflags': [
'-Wall',
'-W',
+ # Code should someday be made clean for -Wmissing-field-initializers
brucedawson 2015/04/16 20:54:24 I am not convinced that code should ever be made c
+ # and -Wsign-compare, but for now this produces too much noise to be
+ # useful.
+ '-Wno-missing-field-initializers',
+ '-Wno-sign-compare',
'-Wno-unused-parameter',
'-pthread',
'-fno-exceptions',
« 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