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

Unified Diff: third_party/opus/opus_srcs_arm.gypi

Issue 150103006: Enabling ARM optimizations for Opus on Android and ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming Created 6 years, 9 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
« third_party/opus/opus.gyp ('K') | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/opus/opus_srcs_arm.gypi
diff --git a/third_party/opus/opus_srcs_arm.gypi b/third_party/opus/opus_srcs_arm.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..9727d36d0d54600b806eb0db6ec791269625a2d8
--- /dev/null
+++ b/third_party/opus/opus_srcs_arm.gypi
@@ -0,0 +1,39 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'sources': [
+ 'src/celt/arm/arm_celt_map.c',
+ 'src/celt/arm/armcpu.c',
+ 'src/celt/arm/armcpu.h',
+ 'src/celt/arm/fixed_armv4.h',
+ 'src/celt/arm/fixed_armv5e.h',
+ 'src/celt/arm/kiss_fft_armv4.h',
+ 'src/celt/arm/kiss_fft_armv5e.h',
+ 'src/celt/pitch_arm.h',
+ 'src/silk/arm/macro_armv4.h',
+ 'src/silk/arm/macro_armv5e.h',
+ 'src/silk/arm/SigProc_FIX_armv4.h',
+ 'src/silk/arm/SigProc_FIX_armv5e.h',
+ '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'convert_assembler',
+ 'inputs': [
+ 'src/celt/arm/arm2gnu.pl',
+ 'src/celt/arm/celt_pitch_xcorr_arm.s',
+ ],
+ 'outputs': [
+ '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S',
+ ],
+ 'action': [
+ 'bash',
+ '-c',
+ 'perl src/celt/arm/arm2gnu.pl src/celt/arm/celt_pitch_xcorr_arm.s | sed "s/OPUS_ARM_MAY_HAVE_[A-Z]*/1/g" | sed "/.include/d" > <(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S',
+ ],
+ 'message': 'Convert Opus assembler for ARM.'
+ },
+ ],
+}
« third_party/opus/opus.gyp ('K') | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698