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

Unified Diff: media/media.gyp

Issue 18566009: Optimize loop condition for SincResampler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup. Created 7 years, 5 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
« media/base/sinc_resampler.cc ('K') | « media/base/sinc_resampler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
],
« media/base/sinc_resampler.cc ('K') | « media/base/sinc_resampler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698