1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 # 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 5 # tree. An additional intellectual property rights grant can be found 6 # in the file PATENTS. All contributing project authors may 7 # be found in the AUTHORS file in the root of the source tree. 8 9 { 10 'includes': [ 11 '../../../../../common_settings.gypi', 12 ], 13 'targets': [ 14 { 15 'target_name': 'aec', 16 'type': '<(library)', 17 'dependencies': [ 18 '../../../../../common_audio/signal_processing_library/main/source/spl.gyp:spl', 19 '../../../utility/util.gyp:apm_util' 20 ], 21 'include_dirs': [ 22 '../interface', 23 ], 24 'direct_dependent_settings': { 25 'include_dirs': [ 26 '../interface', 27 ], 28 }, 29 'sources': [ 30 '../interface/echo_cancellation.h', 31 'echo_cancellation.c', 32 'aec_core.c', 33 'aec_core_sse2.c', 34 'aec_rdft.h', 35 'aec_rdft.c', 36 'aec_rdft_sse2.c', 37 'aec_core.h', 38 'resampler.c', 39 'resampler.h', 40 ], 41 }, 42 ], 43 } 44 45 # Local Variables: 46 # tab-width:2 47 # indent-tabs-mode:nil 48 # End: 49 # vim: set expandtab tabstop=2 shiftwidth=2: 50