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

Unified Diff: gyp/dependencies.gypi

Issue 12702024: Fix warnings-as-errors in Android third-party libs (Closed) Base URL: http://skia.googlecode.com/svn/android/
Patch Set: Created 7 years, 9 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: gyp/dependencies.gypi
===================================================================
--- gyp/dependencies.gypi (revision 8325)
+++ gyp/dependencies.gypi (working copy)
@@ -9,6 +9,9 @@
# tested.
{
+ 'variables': {
+ 'skia_warnings_as_errors': 0,
+ },
'targets': [
{
'target_name': 'cpu_features',
@@ -22,6 +25,9 @@
'../third_party/cpufeatures/cpu-features.c',
'../third_party/cpufeatures/cpu-features.h',
],
+ 'cflags!': [
+ '-fno-rtti', # supresses warnings about invalid option of non-C++ code
+ ],
},
{
'target_name': 'expat',
@@ -69,7 +75,6 @@
'cflags!': [
'-fno-rtti', # supresses warnings about invalid option of non-C++ code
'-Wall',
- '-Werror',
],
'direct_dependent_settings': {
'include_dirs': [
@@ -108,7 +113,6 @@
'cflags!': [
'-fno-rtti', # supresses warnings about invalid option of non-C++ code
'-Wall',
- '-Werror',
],
'link_settings': {
'libraries': [
@@ -186,7 +190,6 @@
'cflags!': [
'-fno-rtti', # supresses warnings about invalid option of non-C++ code
'-Wall',
- '-Werror',
],
'direct_dependent_settings': {
'include_dirs': [
« 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