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

Side by Side Diff: webrtc/modules/audio_coding/codecs/isac/isacfix.gypi

Issue 1539883002: iSAC: Remove unnecessary WEBRTC_LINUX define. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « no previous file | 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 (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'fix/source/lpc_masking_model.h', 70 'fix/source/lpc_masking_model.h',
71 'fix/source/lpc_tables.h', 71 'fix/source/lpc_tables.h',
72 'fix/source/pitch_estimator.h', 72 'fix/source/pitch_estimator.h',
73 'fix/source/pitch_gain_tables.h', 73 'fix/source/pitch_gain_tables.h',
74 'fix/source/pitch_lag_tables.h', 74 'fix/source/pitch_lag_tables.h',
75 'fix/source/settings.h', 75 'fix/source/settings.h',
76 'fix/source/spectrum_ar_model_tables.h', 76 'fix/source/spectrum_ar_model_tables.h',
77 'fix/source/structs.h', 77 'fix/source/structs.h',
78 ], 78 ],
79 'conditions': [ 79 'conditions': [
80 ['OS!="win"', {
81 'defines': [
82 'WEBRTC_LINUX',
83 ],
84 }],
85 ['target_arch=="arm" and arm_version>=7', { 80 ['target_arch=="arm" and arm_version>=7', {
86 'sources': [ 81 'sources': [
87 'fix/source/lattice_armv7.S', 82 'fix/source/lattice_armv7.S',
88 'fix/source/pitch_filter_armv6.S', 83 'fix/source/pitch_filter_armv6.S',
89 ], 84 ],
90 'sources!': [ 85 'sources!': [
91 'fix/source/lattice_c.c', 86 'fix/source/lattice_c.c',
92 'fix/source/pitch_filter_c.c', 87 'fix/source/pitch_filter_c.c',
93 ], 88 ],
94 }], 89 }],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'fix/source/filterbanks_neon.c', 137 'fix/source/filterbanks_neon.c',
143 'fix/source/filters_neon.c', 138 'fix/source/filters_neon.c',
144 'fix/source/lattice_neon.c', 139 'fix/source/lattice_neon.c',
145 'fix/source/transform_neon.c', 140 'fix/source/transform_neon.c',
146 ], 141 ],
147 }, 142 },
148 ], 143 ],
149 }], 144 }],
150 ], 145 ],
151 } 146 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698