blob: 77f0a14af16a849cc081c8d46ea9ef81373f02b0 [file] [log] [blame]
andrew@webrtc.orgb9d7d932012-01-25 19:21:13 +00001# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00002#
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{
andrew@webrtc.orgb0730102013-11-11 17:20:27 +000010 'variables': {
michaelbai@google.com82ebb462014-02-11 04:48:27 +000011 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/audio_processing/asm_offsets',
andrew@webrtc.orgb0730102013-11-11 17:20:27 +000012 },
niklase@google.com470e71d2011-07-07 08:21:25 +000013 'targets': [
14 {
15 'target_name': 'audio_processing',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000016 'type': 'static_library',
17 'variables': {
18 # Outputs some low-level debug files.
19 'aec_debug_dump%': 0,
bjornv@webrtc.orgea297872014-09-23 11:21:39 +000020 'agc_debug_dump%': 0,
andrew@webrtc.org1760a172013-09-25 23:17:38 +000021
22 # Disables the usual mode where we trust the reported system delay
23 # values the AEC receives. The corresponding define is set appropriately
24 # in the code, but it can be force-enabled here for testing.
25 'aec_untrusted_delay_for_testing%': 0,
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000026 },
niklase@google.com470e71d2011-07-07 08:21:25 +000027 'dependencies': [
aluebs@webrtc.org0c39e912014-12-18 22:22:04 +000028 '<(webrtc_root)/base/base.gyp:rtc_base_approved',
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000029 '<(webrtc_root)/common.gyp:webrtc_common',
aluebs@webrtc.org0c39e912014-12-18 22:22:04 +000030 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
Zeke Chin786dbdc2015-06-10 13:45:08 -070031 '<(webrtc_root)/modules/modules.gyp:isac',
andresp@webrtc.org86e1e482015-01-14 09:30:52 +000032 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
niklase@google.com470e71d2011-07-07 08:21:25 +000033 ],
niklase@google.com470e71d2011-07-07 08:21:25 +000034 'sources': [
peah8df5d4f2016-02-23 14:34:59 -080035 'aec/aec_core.cc',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000036 'aec/aec_core.h',
37 'aec/aec_core_internal.h',
38 'aec/aec_rdft.c',
39 'aec/aec_rdft.h',
peah88950cf2016-03-04 00:12:40 -080040 'aec/aec_resampler.cc',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000041 'aec/aec_resampler.h',
peah8df5d4f2016-02-23 14:34:59 -080042 'aec/echo_cancellation.cc',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000043 'aec/echo_cancellation_internal.h',
Henrik Kjellander9b72af92015-11-11 20:16:11 +010044 'aec/echo_cancellation.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000045 'aecm/aecm_core.c',
46 'aecm/aecm_core.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000047 'aecm/echo_control_mobile.c',
Henrik Kjellander9b72af92015-11-11 20:16:11 +010048 'aecm/echo_control_mobile.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000049 'agc/agc.cc',
50 'agc/agc.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000051 'agc/agc_manager_direct.cc',
52 'agc/agc_manager_direct.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000053 'agc/gain_map_internal.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000054 'agc/histogram.cc',
55 'agc/histogram.h',
bjornv@webrtc.orgb395a5e2014-12-16 10:38:10 +000056 'agc/legacy/analog_agc.c',
57 'agc/legacy/analog_agc.h',
58 'agc/legacy/digital_agc.c',
59 'agc/legacy/digital_agc.h',
60 'agc/legacy/gain_control.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +000061 'agc/utility.cc',
62 'agc/utility.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000063 'audio_buffer.cc',
64 'audio_buffer.h',
65 'audio_processing_impl.cc',
66 'audio_processing_impl.h',
aluebs4a66e4a2015-10-19 18:02:39 -070067 'beamformer/array_util.cc',
68 'beamformer/array_util.h',
Michael Graczykdfa36052015-03-25 16:37:27 -070069 'beamformer/beamformer.h',
aluebs@webrtc.org0c39e912014-12-18 22:22:04 +000070 'beamformer/complex_matrix.h',
71 'beamformer/covariance_matrix_generator.cc',
72 'beamformer/covariance_matrix_generator.h',
73 'beamformer/matrix.h',
andrew@webrtc.orgbd8c8652015-03-20 00:28:22 +000074 'beamformer/nonlinear_beamformer.cc',
75 'beamformer/nonlinear_beamformer.h',
andrew@webrtc.orgddbb8a22014-04-22 21:00:04 +000076 'common.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000077 'echo_cancellation_impl.cc',
78 'echo_cancellation_impl.h',
79 'echo_control_mobile_impl.cc',
80 'echo_control_mobile_impl.h',
peahbe615622016-02-13 16:40:47 -080081 'gain_control_for_experimental_agc.cc',
82 'gain_control_for_experimental_agc.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000083 'gain_control_impl.cc',
84 'gain_control_impl.h',
85 'high_pass_filter_impl.cc',
86 'high_pass_filter_impl.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000087 'include/audio_processing.h',
ekmdb4fecf2015-06-22 17:49:08 -070088 'intelligibility/intelligibility_enhancer.cc',
89 'intelligibility/intelligibility_enhancer.h',
90 'intelligibility/intelligibility_utils.cc',
91 'intelligibility/intelligibility_utils.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000092 'level_estimator_impl.cc',
93 'level_estimator_impl.h',
peah9e69abf2015-08-28 04:41:25 -070094 'logging/aec_logging.h',
95 'logging/aec_logging_file_handling.cc',
96 'logging/aec_logging_file_handling.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000097 'noise_suppression_impl.cc',
98 'noise_suppression_impl.h',
peah737f4b82016-03-10 23:05:28 -080099 'render_queue_item_verifier.h',
andrew@webrtc.org382c0c22014-05-05 18:22:21 +0000100 'rms_level.cc',
101 'rms_level.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000102 'splitting_filter.cc',
103 'splitting_filter.h',
Alejandro Luebs5a92aa82015-04-27 11:34:45 -0700104 'three_band_filter_bank.cc',
105 'three_band_filter_bank.h',
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000106 'transient/common.h',
107 'transient/daubechies_8_wavelet_coeffs.h',
108 'transient/dyadic_decimator.h',
109 'transient/moving_moments.cc',
110 'transient/moving_moments.h',
111 'transient/transient_detector.cc',
112 'transient/transient_detector.h',
113 'transient/transient_suppressor.cc',
114 'transient/transient_suppressor.h',
115 'transient/wpd_node.cc',
116 'transient/wpd_node.h',
117 'transient/wpd_tree.cc',
118 'transient/wpd_tree.h',
henrikg@webrtc.orgc6937042014-01-30 09:50:46 +0000119 'typing_detection.cc',
120 'typing_detection.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000121 'utility/delay_estimator.c',
122 'utility/delay_estimator.h',
123 'utility/delay_estimator_internal.h',
124 'utility/delay_estimator_wrapper.c',
125 'utility/delay_estimator_wrapper.h',
aluebsecf6b812015-06-25 12:28:48 -0700126 'vad/common.h',
127 'vad/gmm.cc',
128 'vad/gmm.h',
129 'vad/noise_gmm_tables.h',
130 'vad/pitch_based_vad.cc',
131 'vad/pitch_based_vad.h',
132 'vad/pitch_internal.cc',
133 'vad/pitch_internal.h',
134 'vad/pole_zero_filter.cc',
135 'vad/pole_zero_filter.h',
136 'vad/standalone_vad.cc',
137 'vad/standalone_vad.h',
138 'vad/vad_audio_proc.cc',
139 'vad/vad_audio_proc.h',
140 'vad/vad_audio_proc_internal.h',
141 'vad/vad_circular_buffer.cc',
142 'vad/vad_circular_buffer.h',
143 'vad/voice_activity_detector.cc',
144 'vad/voice_activity_detector.h',
145 'vad/voice_gmm_tables.h',
niklase@google.com470e71d2011-07-07 08:21:25 +0000146 'voice_detection_impl.cc',
147 'voice_detection_impl.h',
148 ],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000149 'conditions': [
150 ['aec_debug_dump==1', {
151 'defines': ['WEBRTC_AEC_DEBUG_DUMP',],
152 }],
andrew@webrtc.org1760a172013-09-25 23:17:38 +0000153 ['aec_untrusted_delay_for_testing==1', {
154 'defines': ['WEBRTC_UNTRUSTED_DELAY',],
155 }],
bjornv@webrtc.orgea297872014-09-23 11:21:39 +0000156 ['agc_debug_dump==1', {
157 'defines': ['WEBRTC_AGC_DEBUG_DUMP',],
158 }],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000159 ['enable_protobuf==1', {
160 'dependencies': ['audioproc_debug_proto'],
161 'defines': ['WEBRTC_AUDIOPROC_DEBUG_DUMP'],
162 }],
163 ['prefer_fixed_point==1', {
164 'defines': ['WEBRTC_NS_FIXED'],
165 'sources': [
Henrik Kjellander9b72af92015-11-11 20:16:11 +0100166 'ns/noise_suppression_x.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000167 'ns/noise_suppression_x.c',
168 'ns/nsx_core.c',
169 'ns/nsx_core.h',
170 'ns/nsx_defines.h',
171 ],
andrew@webrtc.orgea9392d2014-01-16 07:22:01 +0000172 'conditions': [
Richard Colesd417c932015-04-09 17:36:12 +0200173 ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
andrew@webrtc.orgea9392d2014-01-16 07:22:01 +0000174 'sources': [
175 'ns/nsx_core_mips.c',
176 ],
177 }, {
178 'sources': [
179 'ns/nsx_core_c.c',
180 ],
181 }],
182 ],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000183 }, {
184 'defines': ['WEBRTC_NS_FLOAT'],
185 'sources': [
186 'ns/defines.h',
Henrik Kjellander9b72af92015-11-11 20:16:11 +0100187 'ns/noise_suppression.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000188 'ns/noise_suppression.c',
189 'ns/ns_core.c',
190 'ns/ns_core.h',
191 'ns/windows_private.h',
192 ],
193 }],
194 ['target_arch=="ia32" or target_arch=="x64"', {
195 'dependencies': ['audio_processing_sse2',],
196 }],
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700197 ['build_with_neon==1', {
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000198 'dependencies': ['audio_processing_neon',],
199 }],
Richard Colesd417c932015-04-09 17:36:12 +0200200 ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
andrew@webrtc.orge03cafa2013-11-11 20:10:01 +0000201 'sources': [
202 'aecm/aecm_core_mips.c',
203 ],
andrew@webrtc.orgc0907ef2014-02-21 00:13:31 +0000204 'conditions': [
kjellander@webrtc.org6dab6d72015-03-04 09:50:31 +0000205 ['mips_float_abi=="hard"', {
andrew@webrtc.orgc0907ef2014-02-21 00:13:31 +0000206 'sources': [
peah8df5d4f2016-02-23 14:34:59 -0800207 'aec/aec_core_mips.cc',
andrew@webrtc.orgc0907ef2014-02-21 00:13:31 +0000208 'aec/aec_rdft_mips.c',
209 ],
210 }],
211 ],
andrew@webrtc.orge03cafa2013-11-11 20:10:01 +0000212 }, {
213 'sources': [
214 'aecm/aecm_core_c.c',
215 ],
216 }],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000217 ],
andrew@webrtc.org63e09642013-01-29 06:45:22 +0000218 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
219 'msvs_disabled_warnings': [ 4267, ],
niklase@google.com470e71d2011-07-07 08:21:25 +0000220 },
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000221 ],
222 'conditions': [
223 ['enable_protobuf==1', {
224 'targets': [
225 {
226 'target_name': 'audioproc_debug_proto',
227 'type': 'static_library',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000228 'sources': ['debug.proto',],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000229 'variables': {
230 'proto_in_dir': '.',
231 # Workaround to protect against gyp's pathname relativization when
232 # this file is included by modules.gyp.
kjellander78ddd732016-02-09 08:13:06 -0800233 'proto_out_protected': 'webrtc/modules/audio_processing',
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000234 'proto_out_dir': '<(proto_out_protected)',
235 },
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000236 'includes': ['../../build/protoc.gypi',],
237 },
238 ],
239 }],
240 ['target_arch=="ia32" or target_arch=="x64"', {
241 'targets': [
242 {
243 'target_name': 'audio_processing_sse2',
244 'type': 'static_library',
245 'sources': [
peah8df5d4f2016-02-23 14:34:59 -0800246 'aec/aec_core_sse2.cc',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000247 'aec/aec_rdft_sse2.c',
248 ],
Henrik Kjellanderf2497cf2015-04-16 08:57:16 +0200249 'conditions': [
250 ['os_posix==1', {
251 'cflags': [ '-msse2', ],
252 'xcode_settings': {
253 'OTHER_CFLAGS': [ '-msse2', ],
254 },
255 }],
256 ],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000257 },
258 ],
259 }],
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700260 ['build_with_neon==1', {
kma@webrtc.org12454022012-11-07 22:34:31 +0000261 'targets': [{
262 'target_name': 'audio_processing_neon',
263 'type': 'static_library',
264 'includes': ['../../build/arm_neon.gypi',],
265 'dependencies': [
andrew@webrtc.org34235372013-04-30 23:43:26 +0000266 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
kma@webrtc.org12454022012-11-07 22:34:31 +0000267 ],
268 'sources': [
peah8df5d4f2016-02-23 14:34:59 -0800269 'aec/aec_core_neon.cc',
bjornv@webrtc.orgcd9b90a2014-06-30 12:05:18 +0000270 'aec/aec_rdft_neon.c',
kma@webrtc.org12454022012-11-07 22:34:31 +0000271 'aecm/aecm_core_neon.c',
272 'ns/nsx_core_neon.c',
273 ],
kma@webrtc.org12454022012-11-07 22:34:31 +0000274 }],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000275 }],
niklase@google.com470e71d2011-07-07 08:21:25 +0000276 ],
277}