blob: 6512f03bb06a38b1bb43fd08d43a14ff8fd0cb4a [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': {
11 'audio_processing_dependencies': [
12 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
13 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
14 ],
15 },
niklase@google.com470e71d2011-07-07 08:21:25 +000016 'targets': [
17 {
18 'target_name': 'audio_processing',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000019 'type': 'static_library',
20 'variables': {
21 # Outputs some low-level debug files.
22 'aec_debug_dump%': 0,
andrew@webrtc.org1760a172013-09-25 23:17:38 +000023
24 # Disables the usual mode where we trust the reported system delay
25 # values the AEC receives. The corresponding define is set appropriately
26 # in the code, but it can be force-enabled here for testing.
27 'aec_untrusted_delay_for_testing%': 0,
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000028 },
niklase@google.com470e71d2011-07-07 08:21:25 +000029 'dependencies': [
andrew@webrtc.orgb0730102013-11-11 17:20:27 +000030 '<@(audio_processing_dependencies)',
niklase@google.com470e71d2011-07-07 08:21:25 +000031 ],
niklase@google.com470e71d2011-07-07 08:21:25 +000032 'sources': [
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000033 'aec/include/echo_cancellation.h',
34 'aec/echo_cancellation.c',
35 'aec/echo_cancellation_internal.h',
36 'aec/aec_core.h',
37 'aec/aec_core.c',
bjornv@webrtc.org56a9ec32013-02-20 22:38:47 +000038 'aec/aec_core_internal.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000039 'aec/aec_rdft.h',
40 'aec/aec_rdft.c',
41 'aec/aec_resampler.h',
42 'aec/aec_resampler.c',
43 'aecm/include/echo_control_mobile.h',
44 'aecm/echo_control_mobile.c',
45 'aecm/aecm_core.c',
46 'aecm/aecm_core.h',
47 'agc/include/gain_control.h',
48 'agc/analog_agc.c',
49 'agc/analog_agc.h',
50 'agc/digital_agc.c',
51 'agc/digital_agc.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000052 'audio_buffer.cc',
53 'audio_buffer.h',
54 'audio_processing_impl.cc',
55 'audio_processing_impl.h',
56 'echo_cancellation_impl.cc',
57 'echo_cancellation_impl.h',
andrew@webrtc.org61e596f2013-07-25 18:28:29 +000058 'echo_cancellation_impl_wrapper.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000059 'echo_control_mobile_impl.cc',
60 'echo_control_mobile_impl.h',
61 'gain_control_impl.cc',
62 'gain_control_impl.h',
63 'high_pass_filter_impl.cc',
64 'high_pass_filter_impl.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000065 'include/audio_processing.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000066 'level_estimator_impl.cc',
67 'level_estimator_impl.h',
68 'noise_suppression_impl.cc',
69 'noise_suppression_impl.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000070 'processing_component.cc',
71 'processing_component.h',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000072 'utility/delay_estimator.c',
73 'utility/delay_estimator.h',
74 'utility/delay_estimator_internal.h',
75 'utility/delay_estimator_wrapper.c',
76 'utility/delay_estimator_wrapper.h',
77 'utility/fft4g.c',
78 'utility/fft4g.h',
79 'utility/ring_buffer.c',
80 'utility/ring_buffer.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000081 'voice_detection_impl.cc',
82 'voice_detection_impl.h',
83 ],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000084 'conditions': [
85 ['aec_debug_dump==1', {
86 'defines': ['WEBRTC_AEC_DEBUG_DUMP',],
87 }],
andrew@webrtc.org1760a172013-09-25 23:17:38 +000088 ['aec_untrusted_delay_for_testing==1', {
89 'defines': ['WEBRTC_UNTRUSTED_DELAY',],
90 }],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +000091 ['enable_protobuf==1', {
92 'dependencies': ['audioproc_debug_proto'],
93 'defines': ['WEBRTC_AUDIOPROC_DEBUG_DUMP'],
94 }],
95 ['prefer_fixed_point==1', {
96 'defines': ['WEBRTC_NS_FIXED'],
97 'sources': [
98 'ns/include/noise_suppression_x.h',
99 'ns/noise_suppression_x.c',
100 'ns/nsx_core.c',
101 'ns/nsx_core.h',
102 'ns/nsx_defines.h',
103 ],
104 }, {
105 'defines': ['WEBRTC_NS_FLOAT'],
106 'sources': [
107 'ns/defines.h',
108 'ns/include/noise_suppression.h',
109 'ns/noise_suppression.c',
110 'ns/ns_core.c',
111 'ns/ns_core.h',
112 'ns/windows_private.h',
113 ],
114 }],
115 ['target_arch=="ia32" or target_arch=="x64"', {
116 'dependencies': ['audio_processing_sse2',],
117 }],
kjellander@webrtc.org917306d2013-12-10 09:26:07 +0000118 ['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000119 'dependencies': ['audio_processing_neon',],
120 }],
andrew@webrtc.orge03cafa2013-11-11 20:10:01 +0000121 ['target_arch=="mipsel"', {
122 'sources': [
123 'aecm/aecm_core_mips.c',
124 ],
125 }, {
126 'sources': [
127 'aecm/aecm_core_c.c',
128 ],
129 }],
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000130 ],
andrew@webrtc.org63e09642013-01-29 06:45:22 +0000131 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
132 'msvs_disabled_warnings': [ 4267, ],
niklase@google.com470e71d2011-07-07 08:21:25 +0000133 },
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000134 ],
135 'conditions': [
136 ['enable_protobuf==1', {
137 'targets': [
138 {
139 'target_name': 'audioproc_debug_proto',
140 'type': 'static_library',
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000141 'sources': ['debug.proto',],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000142 'variables': {
143 'proto_in_dir': '.',
144 # Workaround to protect against gyp's pathname relativization when
145 # this file is included by modules.gyp.
146 'proto_out_protected': 'webrtc/audio_processing',
147 'proto_out_dir': '<(proto_out_protected)',
148 },
andrew@webrtc.org8c4696c2012-09-08 19:27:24 +0000149 'includes': ['../../build/protoc.gypi',],
150 },
151 ],
152 }],
153 ['target_arch=="ia32" or target_arch=="x64"', {
154 'targets': [
155 {
156 'target_name': 'audio_processing_sse2',
157 'type': 'static_library',
158 'sources': [
159 'aec/aec_core_sse2.c',
160 'aec/aec_rdft_sse2.c',
161 ],
162 'cflags': ['-msse2',],
163 'xcode_settings': {
164 'OTHER_CFLAGS': ['-msse2',],
165 },
166 },
167 ],
168 }],
kjellander@webrtc.org917306d2013-12-10 09:26:07 +0000169 ['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
kma@webrtc.org12454022012-11-07 22:34:31 +0000170 'targets': [{
171 'target_name': 'audio_processing_neon',
172 'type': 'static_library',
173 'includes': ['../../build/arm_neon.gypi',],
174 'dependencies': [
andrew@webrtc.org34235372013-04-30 23:43:26 +0000175 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
kma@webrtc.org12454022012-11-07 22:34:31 +0000176 ],
177 'sources': [
178 'aecm/aecm_core_neon.c',
179 'ns/nsx_core_neon.c',
180 ],
181 'conditions': [
kma@webrtc.org2f9bd242013-02-23 04:16:59 +0000182 ['OS=="android" or OS=="ios"', {
kma@webrtc.org12454022012-11-07 22:34:31 +0000183 'dependencies': [
184 'audio_processing_offsets',
185 ],
kma@webrtc.org12454022012-11-07 22:34:31 +0000186 'sources': [
187 'aecm/aecm_core_neon.S',
188 'ns/nsx_core_neon.S',
189 ],
190 'sources!': [
191 'aecm/aecm_core_neon.c',
192 'ns/nsx_core_neon.c',
193 ],
194 'includes!': ['../../build/arm_neon.gypi',],
195 }],
196 ],
197 }],
198 'conditions': [
kma@webrtc.org2f9bd242013-02-23 04:16:59 +0000199 ['OS=="android" or OS=="ios"', {
kma@webrtc.org12454022012-11-07 22:34:31 +0000200 'targets': [{
201 'target_name': 'audio_processing_offsets',
202 'type': 'none',
203 'sources': [
204 'aecm/aecm_core_neon_offsets.c',
205 'ns/nsx_core_neon_offsets.c',
206 ],
207 'variables': {
208 'asm_header_dir': 'asm_offsets',
209 },
210 'includes': ['../../build/generate_asm_header.gypi',],
211 }],
212 }],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +0000213 ],
214 }],
niklase@google.com470e71d2011-07-07 08:21:25 +0000215 ],
216}