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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 1857153002: Changed AECM to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added external declaration to the delay estimator wrapper inclusion Created 4 years, 8 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
« no previous file with comments | « webrtc/modules/audio_processing/aecm/echo_control_mobile.cc ('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 (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 'variables': { 10 'variables': {
(...skipping 24 matching lines...) Expand all
35 'aec/aec_core.cc', 35 'aec/aec_core.cc',
36 'aec/aec_core.h', 36 'aec/aec_core.h',
37 'aec/aec_core_internal.h', 37 'aec/aec_core_internal.h',
38 'aec/aec_rdft.c', 38 'aec/aec_rdft.c',
39 'aec/aec_rdft.h', 39 'aec/aec_rdft.h',
40 'aec/aec_resampler.cc', 40 'aec/aec_resampler.cc',
41 'aec/aec_resampler.h', 41 'aec/aec_resampler.h',
42 'aec/echo_cancellation.cc', 42 'aec/echo_cancellation.cc',
43 'aec/echo_cancellation_internal.h', 43 'aec/echo_cancellation_internal.h',
44 'aec/echo_cancellation.h', 44 'aec/echo_cancellation.h',
45 'aecm/aecm_core.c', 45 'aecm/aecm_core.cc',
46 'aecm/aecm_core.h', 46 'aecm/aecm_core.h',
47 'aecm/echo_control_mobile.c', 47 'aecm/echo_control_mobile.cc',
48 'aecm/echo_control_mobile.h', 48 'aecm/echo_control_mobile.h',
49 'agc/agc.cc', 49 'agc/agc.cc',
50 'agc/agc.h', 50 'agc/agc.h',
51 'agc/agc_manager_direct.cc', 51 'agc/agc_manager_direct.cc',
52 'agc/agc_manager_direct.h', 52 'agc/agc_manager_direct.h',
53 'agc/gain_map_internal.h', 53 'agc/gain_map_internal.h',
54 'agc/histogram.cc', 54 'agc/histogram.cc',
55 'agc/histogram.h', 55 'agc/histogram.h',
56 'agc/legacy/analog_agc.c', 56 'agc/legacy/analog_agc.c',
57 'agc/legacy/analog_agc.h', 57 'agc/legacy/analog_agc.h',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ], 194 ],
195 }], 195 }],
196 ['target_arch=="ia32" or target_arch=="x64"', { 196 ['target_arch=="ia32" or target_arch=="x64"', {
197 'dependencies': ['audio_processing_sse2',], 197 'dependencies': ['audio_processing_sse2',],
198 }], 198 }],
199 ['build_with_neon==1', { 199 ['build_with_neon==1', {
200 'dependencies': ['audio_processing_neon',], 200 'dependencies': ['audio_processing_neon',],
201 }], 201 }],
202 ['target_arch=="mipsel" and mips_arch_variant!="r6"', { 202 ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
203 'sources': [ 203 'sources': [
204 'aecm/aecm_core_mips.c', 204 'aecm/aecm_core_mips.cc',
205 ], 205 ],
206 'conditions': [ 206 'conditions': [
207 ['mips_float_abi=="hard"', { 207 ['mips_float_abi=="hard"', {
208 'sources': [ 208 'sources': [
209 'aec/aec_core_mips.cc', 209 'aec/aec_core_mips.cc',
210 'aec/aec_rdft_mips.c', 210 'aec/aec_rdft_mips.c',
211 ], 211 ],
212 }], 212 }],
213 ], 213 ],
214 }, { 214 }, {
215 'sources': [ 215 'sources': [
216 'aecm/aecm_core_c.c', 216 'aecm/aecm_core_c.cc',
217 ], 217 ],
218 }], 218 }],
219 ], 219 ],
220 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 220 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
221 'msvs_disabled_warnings': [ 4267, ], 221 'msvs_disabled_warnings': [ 4267, ],
222 }, 222 },
223 ], 223 ],
224 'conditions': [ 224 'conditions': [
225 ['enable_protobuf==1', { 225 ['enable_protobuf==1', {
226 'targets': [ 226 'targets': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'targets': [{ 263 'targets': [{
264 'target_name': 'audio_processing_neon', 264 'target_name': 'audio_processing_neon',
265 'type': 'static_library', 265 'type': 'static_library',
266 'includes': ['../../build/arm_neon.gypi',], 266 'includes': ['../../build/arm_neon.gypi',],
267 'dependencies': [ 267 'dependencies': [
268 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 268 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
269 ], 269 ],
270 'sources': [ 270 'sources': [
271 'aec/aec_core_neon.cc', 271 'aec/aec_core_neon.cc',
272 'aec/aec_rdft_neon.c', 272 'aec/aec_rdft_neon.c',
273 'aecm/aecm_core_neon.c', 273 'aecm/aecm_core_neon.cc',
274 'ns/nsx_core_neon.c', 274 'ns/nsx_core_neon.c',
275 ], 275 ],
276 }], 276 }],
277 }], 277 }],
278 ], 278 ],
279 } 279 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aecm/echo_control_mobile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698