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

Unified Diff: build/common.gypi

Issue 11360238: Fix chrome/arm build warnings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove qcms Created 8 years, 1 month 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/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 96e2fb79a55a8ab76b508638e2dccd4228544c8e..223f7a95eb516a80245b6bdb33016a84352dd2ec 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1492,6 +1492,17 @@
# Targets are by default not nacl untrusted code.
'nacl_untrusted_build%': 0,
+ 'pnacl_compile_flags': [
+ # pnacl uses the clang compiler so we need to supress all the
Mark Seaborn 2012/11/15 23:33:27 Nit: 'suppress'
+ # same warnings as we do for clang.
+ # TODO(sbc): Remove these if/when they are removed from the clang
+ # build.
+ '-Wno-unused-function',
+ '-Wno-char-subscripts',
+ '-Wno-c++11-extensions',
+ '-Wno-unnamed-type-template-args',
+ ],
+
'conditions': [
['OS=="win" and component=="shared_library"', {
# See http://msdn.microsoft.com/en-us/library/aa652367.aspx
« 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