Chromium Code Reviews| Index: media/media.gyp |
| diff --git a/media/media.gyp b/media/media.gyp |
| index 88b28dcefbccdbebbb85fa7f5b321095660ed21e..d8f7f9687ddee45d768646a82654f28fe78e1b97 100644 |
| --- a/media/media.gyp |
| +++ b/media/media.gyp |
| @@ -452,7 +452,7 @@ |
| ], |
| }, |
| 'conditions': [ |
| - ['arm_neon==1', { |
| + ['target_arch=="arm" and arm_version>=7 and arm_neon==1', { |
|
Ami GONE FROM CHROMIUM
2013/07/10 21:18:00
FWIW, this will break when targeting ios (device,
DaleCurtis
2013/07/10 23:01:34
Ugh. How does that even work at all? No code outsi
Ami GONE FROM CHROMIUM
2013/07/10 23:04:41
Very little is in fact built into bling...
DaleCurtis
2013/07/11 21:04:34
I've dropped these changes from the latest patch s
|
| 'defines': [ |
| 'USE_NEON' |
| ], |
| @@ -985,7 +985,7 @@ |
| 'webm/webm_webvtt_parser_unittest.cc', |
| ], |
| 'conditions': [ |
| - ['arm_neon==1', { |
| + ['target_arch=="arm" and arm_version>=7 and arm_neon==1', { |
|
Ami GONE FROM CHROMIUM
2013/07/09 23:20:08
Why not instead change build/common.gypi to not de
DaleCurtis
2013/07/10 21:06:31
Hmm, that's non-trivial since target_arch isn't de
|
| 'defines': [ |
| 'USE_NEON' |
| ], |