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

Side by Side Diff: third_party/opus/opus_srcs_rtcd.gypi

Issue 237143003: Enable ARM optimizations for Opus in iOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/opus/opus_srcs_arm.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'sources': [ 6 'sources': [
7 'src/celt/arm/arm_celt_map.c', 7 'src/celt/arm/arm_celt_map.c',
8 'src/celt/arm/armcpu.c', 8 'src/celt/arm/armcpu.c',
9 'src/celt/arm/armcpu.h', 9 'src/celt/arm/armcpu.h',
10 'src/celt/arm/fixed_armv4.h',
11 'src/celt/arm/fixed_armv5e.h',
12 'src/celt/arm/kiss_fft_armv4.h',
13 'src/celt/arm/kiss_fft_armv5e.h',
14 'src/celt/pitch_arm.h',
15 'src/silk/arm/macro_armv4.h',
16 'src/silk/arm/macro_armv5e.h',
17 'src/silk/arm/SigProc_FIX_armv4.h',
18 'src/silk/arm/SigProc_FIX_armv5e.h',
19 '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S', 10 '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S',
20 ], 11 ],
21 'actions': [ 12 'actions': [
22 { 13 {
23 'action_name': 'convert_assembler', 14 'action_name': 'convert_assembler',
24 'inputs': [ 15 'inputs': [
25 'src/celt/arm/arm2gnu.pl', 16 'src/celt/arm/arm2gnu.pl',
26 'src/celt/arm/celt_pitch_xcorr_arm.s', 17 'src/celt/arm/celt_pitch_xcorr_arm.s',
27 ], 18 ],
28 'outputs': [ 19 'outputs': [
29 '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S', 20 '<(INTERMEDIATE_DIR)/celt_pitch_xcorr_arm_gnu.S',
30 ], 21 ],
31 'action': [ 22 'action': [
32 'bash', 23 'bash',
33 '-c', 24 '-c',
34 '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', 25 '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',
35 ], 26 ],
36 'message': 'Convert Opus assembler for ARM.' 27 'message': 'Convert Opus assembler for ARM.'
37 }, 28 },
38 ], 29 ],
39 } 30 }
OLDNEW
« no previous file with comments | « third_party/opus/opus_srcs_arm.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698