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

Unified Diff: gyp/libwebp.gyp

Issue 175383002: Fix warnings on Ubuntu13 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Respond to comments. Created 6 years, 10 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 | « gyp/libjpeg.gyp ('k') | src/animator/SkDisplayType.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/libwebp.gyp
diff --git a/gyp/libwebp.gyp b/gyp/libwebp.gyp
index cacfab63baf96697a78cc7985fb90e39dcf39a31..22a51ba13f42b3e17ab2e48e1159b2a9b70557b5 100644
--- a/gyp/libwebp.gyp
+++ b/gyp/libwebp.gyp
@@ -34,6 +34,7 @@
'../third_party/externals/libwebp/src/dec/vp8l.c',
'../third_party/externals/libwebp/src/dec/webp.c',
],
+ 'cflags': [ '-w' ],
},
{
'target_name': 'libwebp_demux',
@@ -44,6 +45,7 @@
'sources': [
'../third_party/externals/libwebp/src/demux/demux.c',
],
+ 'cflags': [ '-w' ],
},
{
'target_name': 'libwebp_dsp',
@@ -62,6 +64,7 @@
'../third_party/externals/libwebp/src/dsp/upsampling_sse2.c',
'../third_party/externals/libwebp/src/dsp/yuv.c',
],
+ 'cflags': [ '-w' ],
'conditions': [
['skia_os == "android"', {
'dependencies' : [
@@ -87,7 +90,7 @@
'cflags!': [
'-mfpu=vfpv3-d16',
],
- 'cflags': [ '-mfpu=neon' ],
+ 'cflags': [ '-mfpu=neon', '-w' ],
},{ # !(arm_version >= 7)
'type': 'none',
}],
@@ -139,6 +142,7 @@
'../third_party/externals/libwebp/src/utils/thread.c',
'../third_party/externals/libwebp/src/utils/utils.c',
],
+ 'cflags': [ '-w' ],
},
{
'target_name': 'libwebp',
« no previous file with comments | « gyp/libjpeg.gyp ('k') | src/animator/SkDisplayType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698