Commit 345c042d authored by jzern@chromium.org's avatar jzern@chromium.org

libwebp: silence libtool warning on non-neon builds


BUG=141949
TEST=build


Review URL: https://chromiumcodereview.appspot.com/10855111

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151196 0039d316-1c4b-4281-b951-d872f2087c98
parent 27ee16ff
...@@ -60,16 +60,18 @@ ...@@ -60,16 +60,18 @@
}, },
{ {
'target_name': 'libwebp_dsp_neon', 'target_name': 'libwebp_dsp_neon',
'conditions': [
['armv7 == 1', {
'type': 'static_library', 'type': 'static_library',
'include_dirs': ['.'], 'include_dirs': ['.'],
'sources': [ 'sources': [
'dsp/dec_neon.c', 'dsp/dec_neon.c',
], ],
'conditions': [
['armv7 == 1', {
# behavior similar dsp_neon.c.neon in an Android.mk # behavior similar dsp_neon.c.neon in an Android.mk
'cflags!': [ '-mfpu=vfpv3-d16' ], 'cflags!': [ '-mfpu=vfpv3-d16' ],
'cflags': [ '-mfpu=neon' ], 'cflags': [ '-mfpu=neon' ],
},{ # "armv7 != 1"
'type': 'none',
}], }],
['order_profiling != 0', { ['order_profiling != 0', {
'target_conditions' : [ 'target_conditions' : [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment