In SPL, replacing the C version of sqrt_floor with assembly version for Android platform

Review URL: https://webrtc-codereview.appspot.com/735004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2607 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kma@webrtc.org
2012-08-13 21:49:23 +00:00
parent 65bc254309
commit c839f08dd6
4 changed files with 14 additions and 10 deletions

View File

@ -56,6 +56,16 @@
'sqrt_of_one_minus_x_squared.c',
'vector_scaling_operations.c',
],
'conditions': [
['OS=="android"', {
'sources': [
'spl_sqrt_floor_arm.s',
],
'sources!': [
'spl_sqrt_floor.c',
],
}],
],
}, # spl
], # targets
'conditions': [
@ -77,9 +87,3 @@
}], # include_tests
], # conditions
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: