blob: ff9a4d6474c89005eaf4d139cc3c332f40b23037 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +00001# Copyright (c) 2014 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
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +00009import("//build/config/arm.gni")
10import("//third_party/protobuf/proto_library.gni")
mbonadei9aa3f0a2017-01-24 06:58:22 -080011import("../../webrtc.gni")
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000012
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +000013declare_args() {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +000014 # Disables the usual mode where we trust the reported system delay
15 # values the AEC receives. The corresponding define is set appropriately
16 # in the code, but it can be force-enabled here for testing.
17 aec_untrusted_delay_for_testing = false
18}
19
kjellanderb62dbbe2016-09-23 00:38:52 -070020rtc_static_library("audio_processing") {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +000021 sources = [
peah8df5d4f2016-02-23 14:34:59 -080022 "aec/aec_core.cc",
pbos@webrtc.org788acd12014-12-15 09:41:24 +000023 "aec/aec_core.h",
peahe687f782016-05-09 03:57:33 -070024 "aec/aec_core_optimized_methods.h",
peah88950cf2016-03-04 00:12:40 -080025 "aec/aec_resampler.cc",
pbos@webrtc.org788acd12014-12-15 09:41:24 +000026 "aec/aec_resampler.h",
peah8df5d4f2016-02-23 14:34:59 -080027 "aec/echo_cancellation.cc",
Henrik Kjellander9b72af92015-11-11 20:16:11 +010028 "aec/echo_cancellation.h",
peah522d71b2017-02-23 05:16:26 -080029 "aec3/adaptive_fir_filter.cc",
30 "aec3/adaptive_fir_filter.h",
31 "aec3/aec3_common.cc",
32 "aec3/aec3_common.h",
33 "aec3/aec3_fft.cc",
34 "aec3/aec3_fft.h",
35 "aec3/aec_state.cc",
36 "aec3/aec_state.h",
peahd0263542017-01-03 04:20:34 -080037 "aec3/block_framer.cc",
38 "aec3/block_framer.h",
39 "aec3/block_processor.cc",
40 "aec3/block_processor.h",
peahe985b3f2017-02-28 22:08:53 -080041 "aec3/block_processor_metrics.cc",
42 "aec3/block_processor_metrics.h",
peahd0263542017-01-03 04:20:34 -080043 "aec3/cascaded_biquad_filter.cc",
44 "aec3/cascaded_biquad_filter.h",
peah522d71b2017-02-23 05:16:26 -080045 "aec3/comfort_noise_generator.cc",
46 "aec3/comfort_noise_generator.h",
peah21920892017-02-08 05:08:56 -080047 "aec3/decimator_by_4.cc",
48 "aec3/decimator_by_4.h",
peahcf02cf12017-04-05 14:18:07 -070049 "aec3/downsampled_render_buffer.cc",
50 "aec3/downsampled_render_buffer.h",
peahe0eae3c2016-12-14 01:16:23 -080051 "aec3/echo_canceller3.cc",
52 "aec3/echo_canceller3.h",
peah69221db2017-01-27 03:28:19 -080053 "aec3/echo_path_delay_estimator.cc",
54 "aec3/echo_path_delay_estimator.h",
peah522d71b2017-02-23 05:16:26 -080055 "aec3/echo_path_variability.cc",
peah69221db2017-01-27 03:28:19 -080056 "aec3/echo_path_variability.h",
57 "aec3/echo_remover.cc",
58 "aec3/echo_remover.h",
peahe985b3f2017-02-28 22:08:53 -080059 "aec3/echo_remover_metrics.cc",
60 "aec3/echo_remover_metrics.h",
peah522d71b2017-02-23 05:16:26 -080061 "aec3/erl_estimator.cc",
62 "aec3/erl_estimator.h",
63 "aec3/erle_estimator.cc",
64 "aec3/erle_estimator.h",
peah522d71b2017-02-23 05:16:26 -080065 "aec3/fft_data.h",
peahd0263542017-01-03 04:20:34 -080066 "aec3/frame_blocker.cc",
67 "aec3/frame_blocker.h",
peah522d71b2017-02-23 05:16:26 -080068 "aec3/main_filter_update_gain.cc",
69 "aec3/main_filter_update_gain.h",
peah21920892017-02-08 05:08:56 -080070 "aec3/matched_filter.cc",
71 "aec3/matched_filter.h",
72 "aec3/matched_filter_lag_aggregator.cc",
73 "aec3/matched_filter_lag_aggregator.h",
peah522d71b2017-02-23 05:16:26 -080074 "aec3/output_selector.cc",
75 "aec3/output_selector.h",
peahcf02cf12017-04-05 14:18:07 -070076 "aec3/render_buffer.cc",
77 "aec3/render_buffer.h",
peah69221db2017-01-27 03:28:19 -080078 "aec3/render_delay_buffer.cc",
79 "aec3/render_delay_buffer.h",
80 "aec3/render_delay_controller.cc",
81 "aec3/render_delay_controller.h",
peahe985b3f2017-02-28 22:08:53 -080082 "aec3/render_delay_controller_metrics.cc",
83 "aec3/render_delay_controller_metrics.h",
peah522d71b2017-02-23 05:16:26 -080084 "aec3/render_signal_analyzer.cc",
85 "aec3/render_signal_analyzer.h",
86 "aec3/residual_echo_estimator.cc",
87 "aec3/residual_echo_estimator.h",
88 "aec3/shadow_filter_update_gain.cc",
89 "aec3/shadow_filter_update_gain.h",
90 "aec3/subtractor.cc",
91 "aec3/subtractor.h",
92 "aec3/subtractor_output.h",
93 "aec3/suppression_filter.cc",
94 "aec3/suppression_filter.h",
95 "aec3/suppression_gain.cc",
96 "aec3/suppression_gain.h",
peah5e79b292017-04-12 01:20:45 -070097 "aec3/vector_math.h",
peah27045122016-04-10 22:38:14 -070098 "aecm/aecm_core.cc",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +000099 "aecm/aecm_core.h",
peah27045122016-04-10 22:38:14 -0700100 "aecm/echo_control_mobile.cc",
Henrik Kjellander9b72af92015-11-11 20:16:11 +0100101 "aecm/echo_control_mobile.h",
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000102 "agc/agc.cc",
103 "agc/agc.h",
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000104 "agc/agc_manager_direct.cc",
105 "agc/agc_manager_direct.h",
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000106 "agc/gain_map_internal.h",
peahbbe42332016-06-08 06:42:02 -0700107 "agc/loudness_histogram.cc",
108 "agc/loudness_histogram.h",
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000109 "agc/utility.cc",
110 "agc/utility.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000111 "audio_buffer.cc",
112 "audio_buffer.h",
113 "audio_processing_impl.cc",
114 "audio_processing_impl.h",
aluebs4a66e4a2015-10-19 18:02:39 -0700115 "beamformer/array_util.cc",
116 "beamformer/array_util.h",
aluebs@webrtc.org0c39e912014-12-18 22:22:04 +0000117 "beamformer/complex_matrix.h",
118 "beamformer/covariance_matrix_generator.cc",
119 "beamformer/covariance_matrix_generator.h",
120 "beamformer/matrix.h",
andrew@webrtc.orgbd8c8652015-03-20 00:28:22 +0000121 "beamformer/nonlinear_beamformer.cc",
122 "beamformer/nonlinear_beamformer.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000123 "common.h",
124 "echo_cancellation_impl.cc",
125 "echo_cancellation_impl.h",
126 "echo_control_mobile_impl.cc",
127 "echo_control_mobile_impl.h",
ivocaf27ed02016-10-28 07:04:03 -0700128 "echo_detector/circular_buffer.cc",
129 "echo_detector/circular_buffer.h",
130 "echo_detector/mean_variance_estimator.cc",
131 "echo_detector/mean_variance_estimator.h",
ivoc4e477a12017-01-15 08:29:46 -0800132 "echo_detector/moving_max.cc",
133 "echo_detector/moving_max.h",
ivocaf27ed02016-10-28 07:04:03 -0700134 "echo_detector/normalized_covariance_estimator.cc",
135 "echo_detector/normalized_covariance_estimator.h",
peahbe615622016-02-13 16:40:47 -0800136 "gain_control_for_experimental_agc.cc",
137 "gain_control_for_experimental_agc.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000138 "gain_control_impl.cc",
139 "gain_control_impl.h",
peahc19f3122016-10-07 14:54:10 -0700140 "include/audio_processing.cc",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000141 "include/audio_processing.h",
solenberg88499ec2016-09-07 07:34:41 -0700142 "include/config.cc",
143 "include/config.h",
peahca4cac72016-06-29 15:26:12 -0700144 "level_controller/biquad_filter.cc",
145 "level_controller/biquad_filter.h",
146 "level_controller/down_sampler.cc",
147 "level_controller/down_sampler.h",
148 "level_controller/gain_applier.cc",
149 "level_controller/gain_applier.h",
150 "level_controller/gain_selector.cc",
151 "level_controller/gain_selector.h",
peahca4cac72016-06-29 15:26:12 -0700152 "level_controller/level_controller.cc",
153 "level_controller/level_controller.h",
peahc19f3122016-10-07 14:54:10 -0700154 "level_controller/level_controller_constants.h",
peahca4cac72016-06-29 15:26:12 -0700155 "level_controller/noise_level_estimator.cc",
156 "level_controller/noise_level_estimator.h",
157 "level_controller/noise_spectrum_estimator.cc",
158 "level_controller/noise_spectrum_estimator.h",
159 "level_controller/peak_level_estimator.cc",
160 "level_controller/peak_level_estimator.h",
161 "level_controller/saturating_gain_estimator.cc",
162 "level_controller/saturating_gain_estimator.h",
163 "level_controller/signal_classifier.cc",
164 "level_controller/signal_classifier.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000165 "level_estimator_impl.cc",
166 "level_estimator_impl.h",
peahb46083e2016-05-03 07:01:18 -0700167 "logging/apm_data_dumper.cc",
168 "logging/apm_data_dumper.h",
peah8271d042016-11-22 07:24:52 -0800169 "low_cut_filter.cc",
170 "low_cut_filter.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000171 "noise_suppression_impl.cc",
172 "noise_suppression_impl.h",
peah737f4b82016-03-10 23:05:28 -0800173 "render_queue_item_verifier.h",
ivoc9f4a4a02016-10-28 05:39:16 -0700174 "residual_echo_detector.cc",
175 "residual_echo_detector.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000176 "rms_level.cc",
177 "rms_level.h",
aluebs@webrtc.orgbe05c742014-11-14 22:18:10 +0000178 "splitting_filter.cc",
179 "splitting_filter.h",
Alejandro Luebs5a92aa82015-04-27 11:34:45 -0700180 "three_band_filter_bank.cc",
181 "three_band_filter_bank.h",
pbos@webrtc.org788acd12014-12-15 09:41:24 +0000182 "transient/common.h",
183 "transient/daubechies_8_wavelet_coeffs.h",
184 "transient/dyadic_decimator.h",
185 "transient/moving_moments.cc",
186 "transient/moving_moments.h",
187 "transient/transient_detector.cc",
188 "transient/transient_detector.h",
189 "transient/transient_suppressor.cc",
190 "transient/transient_suppressor.h",
191 "transient/wpd_node.cc",
192 "transient/wpd_node.h",
193 "transient/wpd_tree.cc",
194 "transient/wpd_tree.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000195 "typing_detection.cc",
196 "typing_detection.h",
minyue84db6fa2016-03-24 14:36:25 -0700197 "utility/block_mean_calculator.cc",
198 "utility/block_mean_calculator.h",
peahbdb7af62016-04-12 14:47:40 -0700199 "utility/delay_estimator.cc",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000200 "utility/delay_estimator.h",
201 "utility/delay_estimator_internal.h",
peahbdb7af62016-04-12 14:47:40 -0700202 "utility/delay_estimator_wrapper.cc",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000203 "utility/delay_estimator_wrapper.h",
peah81b92912016-10-06 06:46:20 -0700204 "utility/ooura_fft.cc",
205 "utility/ooura_fft.h",
206 "utility/ooura_fft_tables_common.h",
aluebsecf6b812015-06-25 12:28:48 -0700207 "vad/common.h",
208 "vad/gmm.cc",
209 "vad/gmm.h",
210 "vad/noise_gmm_tables.h",
211 "vad/pitch_based_vad.cc",
212 "vad/pitch_based_vad.h",
213 "vad/pitch_internal.cc",
214 "vad/pitch_internal.h",
215 "vad/pole_zero_filter.cc",
216 "vad/pole_zero_filter.h",
217 "vad/standalone_vad.cc",
218 "vad/standalone_vad.h",
219 "vad/vad_audio_proc.cc",
220 "vad/vad_audio_proc.h",
221 "vad/vad_audio_proc_internal.h",
222 "vad/vad_circular_buffer.cc",
223 "vad/vad_circular_buffer.h",
224 "vad/voice_activity_detector.cc",
225 "vad/voice_activity_detector.h",
226 "vad/voice_gmm_tables.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000227 "voice_detection_impl.cc",
228 "voice_detection_impl.h",
229 ]
230
231 defines = []
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200232 deps = [
mbonadei1140f972017-04-26 03:38:35 -0700233 "..:module_api",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200234 "../..:webrtc_common",
aleloi6321b492016-12-05 01:46:09 -0800235 "../../audio/utility:audio_frame_operations",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800236 "../../base:gtest_prod",
mbonadei7c2c8432017-04-07 00:59:12 -0700237 "../../base:protobuf_utils",
kwiberg98ab3a42015-09-30 21:54:21 -0700238 "../audio_coding:isac",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200239 ]
kjellander7439f972016-12-05 22:47:46 -0800240 public_deps = [
241 ":audio_processing_c",
242 ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000243
peahf28a3892016-09-01 08:58:21 -0700244 if (apm_debug_dump) {
245 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ]
peahb46083e2016-05-03 07:01:18 -0700246 } else {
peahf28a3892016-09-01 08:58:21 -0700247 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000248 }
249
250 if (aec_untrusted_delay_for_testing) {
251 defines += [ "WEBRTC_UNTRUSTED_DELAY" ]
252 }
253
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000254 if (rtc_enable_protobuf) {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000255 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
256 deps += [ ":audioproc_debug_proto" ]
257 }
258
peah1bcfce52016-08-26 07:16:04 -0700259 if (rtc_enable_intelligibility_enhancer) {
260 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
261 sources += [
262 "intelligibility/intelligibility_enhancer.cc",
263 "intelligibility/intelligibility_enhancer.h",
264 "intelligibility/intelligibility_utils.cc",
265 "intelligibility/intelligibility_utils.h",
266 ]
267 } else {
268 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
269 }
270
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000271 if (rtc_prefer_fixed_point) {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000272 defines += [ "WEBRTC_NS_FIXED" ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000273 } else {
274 defines += [ "WEBRTC_NS_FLOAT" ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000275 }
276
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000277 if (current_cpu == "x86" || current_cpu == "x64") {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000278 deps += [ ":audio_processing_sse2" ]
279 }
280
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700281 if (rtc_build_with_neon) {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000282 deps += [ ":audio_processing_neon" ]
283 }
284
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000285 if (current_cpu == "mipsel") {
peah27045122016-04-10 22:38:14 -0700286 sources += [ "aecm/aecm_core_mips.cc" ]
kjellander@webrtc.org6dab6d72015-03-04 09:50:31 +0000287 if (mips_float_abi == "hard") {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000288 sources += [
peah8df5d4f2016-02-23 14:34:59 -0800289 "aec/aec_core_mips.cc",
peah81b92912016-10-06 06:46:20 -0700290 "utility/ooura_fft_mips.cc",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000291 ]
292 }
293 } else {
peah27045122016-04-10 22:38:14 -0700294 sources += [ "aecm/aecm_core_c.cc" ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000295 }
296
kjellander8f4419b2016-06-02 02:09:52 -0700297 # TODO(jschuh): Bug 1348: fix this warning.
298 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000299
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000300 deps += [
xians@webrtc.orge46bc772014-10-10 08:36:56 +0000301 "../../base:rtc_base_approved",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000302 "../../common_audio",
303 "../../system_wrappers",
304 ]
305}
306
kjellander7439f972016-12-05 22:47:46 -0800307rtc_source_set("audio_processing_c") {
308 visibility = [ ":*" ] # Only targets in this file can depend on this.
309 sources = [
310 "agc/legacy/analog_agc.c",
311 "agc/legacy/analog_agc.h",
312 "agc/legacy/digital_agc.c",
313 "agc/legacy/digital_agc.h",
314 "agc/legacy/gain_control.h",
315 ]
316
317 if (rtc_prefer_fixed_point) {
318 sources += [
319 "ns/noise_suppression_x.c",
320 "ns/noise_suppression_x.h",
321 "ns/nsx_core.c",
322 "ns/nsx_core.h",
323 "ns/nsx_defines.h",
324 ]
325 if (current_cpu == "mipsel") {
326 sources += [ "ns/nsx_core_mips.c" ]
327 } else {
328 sources += [ "ns/nsx_core_c.c" ]
329 }
330 } else {
331 sources += [
332 "ns/defines.h",
333 "ns/noise_suppression.c",
334 "ns/noise_suppression.h",
335 "ns/ns_core.c",
336 "ns/ns_core.h",
337 "ns/windows_private.h",
338 ]
339 }
340
341 deps = [
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800342 "../..:webrtc_common",
kjellander7439f972016-12-05 22:47:46 -0800343 "../../base:rtc_base_approved",
344 "../../common_audio",
345 "../../system_wrappers",
346 ]
mbonadeie5dc3ce2017-01-25 05:34:46 -0800347
348 if (rtc_build_with_neon) {
349 deps += [ ":audio_processing_neon_c" ]
350 }
kjellander7439f972016-12-05 22:47:46 -0800351}
352
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000353if (rtc_enable_protobuf) {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000354 proto_library("audioproc_debug_proto") {
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200355 sources = [
356 "debug.proto",
357 ]
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000358
kjellander78ddd732016-02-09 08:13:06 -0800359 proto_out_dir = "webrtc/modules/audio_processing"
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000360 }
361}
362
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000363if (current_cpu == "x86" || current_cpu == "x64") {
kjellanderb62dbbe2016-09-23 00:38:52 -0700364 rtc_static_library("audio_processing_sse2") {
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800365 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828)
366 # Errors on cyclic dependency with :audio_processing if enabled.
367 check_includes = false
368
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000369 sources = [
peah8df5d4f2016-02-23 14:34:59 -0800370 "aec/aec_core_sse2.cc",
peah81b92912016-10-06 06:46:20 -0700371 "utility/ooura_fft_sse2.cc",
372 "utility/ooura_fft_tables_neon_sse2.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000373 ]
374
Henrik Kjellanderf2497cf2015-04-16 08:57:16 +0200375 if (is_posix) {
376 cflags = [ "-msse2" ]
377 }
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000378
peahf28a3892016-09-01 08:58:21 -0700379 if (apm_debug_dump) {
380 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ]
peahb46083e2016-05-03 07:01:18 -0700381 } else {
peahf28a3892016-09-01 08:58:21 -0700382 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ]
peahb46083e2016-05-03 07:01:18 -0700383 }
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000384 }
385}
386
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700387if (rtc_build_with_neon) {
kjellanderb62dbbe2016-09-23 00:38:52 -0700388 rtc_static_library("audio_processing_neon") {
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800389 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828)
390 # Errors on cyclic dependency with :audio_processing if enabled.
391 check_includes = false
392
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000393 sources = [
peah8df5d4f2016-02-23 14:34:59 -0800394 "aec/aec_core_neon.cc",
peah27045122016-04-10 22:38:14 -0700395 "aecm/aecm_core_neon.cc",
peah81b92912016-10-06 06:46:20 -0700396 "utility/ooura_fft_neon.cc",
397 "utility/ooura_fft_tables_neon_sse2.h",
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000398 ]
399
kjellander@webrtc.org72273912015-02-23 19:08:31 +0000400 if (current_cpu != "arm64") {
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700401 # Enable compilation for the NEON instruction set. This is needed
402 # since //build/config/arm.gni only enables NEON for iOS, not Android.
403 # This provides the same functionality as webrtc/build/arm_neon.gypi.
ehmaldonado38a21322016-09-02 04:10:34 -0700404 suppressed_configs += [ "//build/config/compiler:compiler_arm_fpu" ]
Henrik Kjellander57e5fd22015-05-25 12:55:39 +0200405 cflags = [ "-mfpu=neon" ]
andrew@webrtc.orga56a2c52014-11-26 17:01:40 +0000406 }
407
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700408 # Disable LTO on NEON targets due to compiler bug.
409 # TODO(fdegans): Enable this. See crbug.com/408997.
kjellander@webrtc.org6d08ca62014-09-07 17:36:10 +0000410 if (rtc_use_lto) {
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000411 cflags -= [
412 "-flto",
413 "-ffat-lto-objects",
414 ]
415 }
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700416
Andrew MacDonaldac4234c2015-06-24 18:25:54 -0700417 deps = [
418 "../../common_audio",
419 ]
kjellander7439f972016-12-05 22:47:46 -0800420 public_deps = [
421 ":audio_processing_neon_c",
422 ]
peahb46083e2016-05-03 07:01:18 -0700423
peahf28a3892016-09-01 08:58:21 -0700424 if (apm_debug_dump) {
425 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ]
peahb46083e2016-05-03 07:01:18 -0700426 } else {
peahf28a3892016-09-01 08:58:21 -0700427 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ]
peahb46083e2016-05-03 07:01:18 -0700428 }
kjellander@webrtc.org524b8f72014-08-31 20:32:53 +0000429 }
kjellander7439f972016-12-05 22:47:46 -0800430
431 rtc_static_library("audio_processing_neon_c") {
mbonadeie5dc3ce2017-01-25 05:34:46 -0800432 # TODO(mbonadei): Remove (bugs.webrtc.org/6828)
433 # Errors on cyclic dependency with :audio_processing_c if enabled.
434 check_includes = false
435
kjellander7439f972016-12-05 22:47:46 -0800436 sources = [
437 "ns/nsx_core_neon.c",
438 ]
439
440 if (current_cpu != "arm64") {
441 # Enable compilation for the NEON instruction set. This is needed
442 # since //build/config/arm.gni only enables NEON for iOS, not Android.
443 # This provides the same functionality as webrtc/build/arm_neon.gypi.
444 suppressed_configs += [ "//build/config/compiler:compiler_arm_fpu" ]
445 cflags = [ "-mfpu=neon" ]
446 }
447
448 # Disable LTO on NEON targets due to compiler bug.
449 # TODO(fdegans): Enable this. See crbug.com/408997.
450 if (rtc_use_lto) {
451 cflags -= [
452 "-flto",
453 "-ffat-lto-objects",
454 ]
455 }
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800456 deps = [
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800457 "../../base:rtc_base_approved",
458 ]
kjellander7439f972016-12-05 22:47:46 -0800459 }
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +0000460}
kjellanderfb114242016-06-13 00:19:48 -0700461
462if (rtc_include_tests) {
kjellander6ceab082016-10-28 05:44:03 -0700463 group("audio_processing_tests") {
464 testonly = true
465 public_deps = [
kjellander6ceab082016-10-28 05:44:03 -0700466 ":audioproc_test_utils",
467 ":click_annotate",
468 ":nonlinear_beamformer_test",
469 ":transient_suppression_test",
kjellander6ceab082016-10-28 05:44:03 -0700470 ]
471
472 if (rtc_enable_intelligibility_enhancer) {
473 public_deps += [ ":intelligibility_proc" ]
474 }
475
476 if (rtc_enable_protobuf) {
ehmaldonado1fd08c12017-01-17 02:37:34 -0800477 public_deps += [
478 ":audioproc_f",
479 ":audioproc_unittest_proto",
480 ":unpack_aecdump",
alessiob5f32aca2017-03-18 02:29:13 -0700481 "test/conversational_speech",
alessiob306d1bf2017-02-24 05:32:21 -0800482 "test/py_quality_assessment",
ehmaldonado1fd08c12017-01-17 02:37:34 -0800483 ]
kjellander6ceab082016-10-28 05:44:03 -0700484 }
485 }
486
ehmaldonado36268652017-01-19 08:27:11 -0800487 rtc_source_set("audio_processing_unittests") {
488 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700489
490 # Skip restricting visibility on mobile platforms since the tests on those
491 # gets additional generated targets which would require many lines here to
492 # cover (which would be confusing to read and hard to maintain).
493 if (!is_android && !is_ios) {
494 visibility = [ "//webrtc/modules:modules_unittests" ]
495 }
ehmaldonado36268652017-01-19 08:27:11 -0800496 sources = [
497 "aec/echo_cancellation_unittest.cc",
498 "aec/system_delay_unittest.cc",
499 "agc/agc_manager_direct_unittest.cc",
500 "agc/loudness_histogram_unittest.cc",
501 "agc/mock_agc.h",
502 "audio_buffer_unittest.cc",
503 "beamformer/array_util_unittest.cc",
504 "beamformer/complex_matrix_unittest.cc",
505 "beamformer/covariance_matrix_generator_unittest.cc",
506 "beamformer/matrix_unittest.cc",
507 "beamformer/mock_nonlinear_beamformer.h",
ehmaldonado36268652017-01-19 08:27:11 -0800508 "config_unittest.cc",
509 "echo_cancellation_impl_unittest.cc",
510 "splitting_filter_unittest.cc",
511 "transient/dyadic_decimator_unittest.cc",
512 "transient/file_utils.cc",
513 "transient/file_utils.h",
514 "transient/file_utils_unittest.cc",
515 "transient/moving_moments_unittest.cc",
516 "transient/transient_detector_unittest.cc",
517 "transient/transient_suppressor_unittest.cc",
518 "transient/wpd_node_unittest.cc",
519 "transient/wpd_tree_unittest.cc",
520 "utility/block_mean_calculator_unittest.cc",
521 "utility/delay_estimator_unittest.cc",
522 "vad/gmm_unittest.cc",
523 "vad/pitch_based_vad_unittest.cc",
524 "vad/pitch_internal_unittest.cc",
525 "vad/pole_zero_filter_unittest.cc",
526 "vad/standalone_vad_unittest.cc",
527 "vad/vad_audio_proc_unittest.cc",
528 "vad/vad_circular_buffer_unittest.cc",
529 "vad/voice_activity_detector_unittest.cc",
530 ]
531
532 deps = [
533 ":audio_processing",
ehmaldonado36268652017-01-19 08:27:11 -0800534 ":audioproc_test_utils",
mbonadei1140f972017-04-26 03:38:35 -0700535 "..:module_api",
ehmaldonado36268652017-01-19 08:27:11 -0800536 "../..:webrtc_common",
537 "../../base:gtest_prod",
mbonadei7c2c8432017-04-07 00:59:12 -0700538 "../../base:protobuf_utils",
ehmaldonado36268652017-01-19 08:27:11 -0800539 "../../base:rtc_base",
540 "../../base:rtc_base_approved",
541 "../../common_audio:common_audio",
542 "../../system_wrappers:system_wrappers",
543 "../../test:test_support",
544 "../audio_coding:neteq_unittest_tools",
alessiob4b6463c2017-03-23 05:17:06 -0700545 "test/conversational_speech:unittest",
ehmaldonado36268652017-01-19 08:27:11 -0800546 "//testing/gmock",
547 "//testing/gtest",
548 ]
549
550 defines = []
551
552 if (apm_debug_dump) {
553 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ]
554 } else {
555 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ]
556 }
557
558 if (rtc_enable_intelligibility_enhancer) {
559 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
560 sources += [
561 "intelligibility/intelligibility_enhancer_unittest.cc",
562 "intelligibility/intelligibility_utils_unittest.cc",
563 ]
564 } else {
565 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
566 }
567
568 if (rtc_prefer_fixed_point) {
569 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ]
570 } else {
571 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ]
572 }
573
574 if (rtc_enable_protobuf) {
575 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
576 deps += [
ehmaldonadof49ff262017-01-23 04:26:02 -0800577 ":audioproc_debug_proto",
ehmaldonado36268652017-01-19 08:27:11 -0800578 ":audioproc_protobuf_utils",
579 ":audioproc_unittest_proto",
580 ]
581 sources += [
peah522d71b2017-02-23 05:16:26 -0800582 "aec3/adaptive_fir_filter_unittest.cc",
583 "aec3/aec3_fft_unittest.cc",
584 "aec3/aec_state_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800585 "aec3/block_framer_unittest.cc",
peahe985b3f2017-02-28 22:08:53 -0800586 "aec3/block_processor_metrics_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800587 "aec3/block_processor_unittest.cc",
588 "aec3/cascaded_biquad_filter_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800589 "aec3/comfort_noise_generator_unittest.cc",
peah21920892017-02-08 05:08:56 -0800590 "aec3/decimator_by_4_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800591 "aec3/echo_canceller3_unittest.cc",
peah69221db2017-01-27 03:28:19 -0800592 "aec3/echo_path_delay_estimator_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800593 "aec3/echo_path_variability_unittest.cc",
peahe985b3f2017-02-28 22:08:53 -0800594 "aec3/echo_remover_metrics_unittest.cc",
peah69221db2017-01-27 03:28:19 -0800595 "aec3/echo_remover_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800596 "aec3/erl_estimator_unittest.cc",
597 "aec3/erle_estimator_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800598 "aec3/fft_data_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800599 "aec3/frame_blocker_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800600 "aec3/main_filter_update_gain_unittest.cc",
peah21920892017-02-08 05:08:56 -0800601 "aec3/matched_filter_lag_aggregator_unittest.cc",
602 "aec3/matched_filter_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800603 "aec3/output_selector_unittest.cc",
peahcf02cf12017-04-05 14:18:07 -0700604 "aec3/render_buffer_unittest.cc",
peah69221db2017-01-27 03:28:19 -0800605 "aec3/render_delay_buffer_unittest.cc",
peahe985b3f2017-02-28 22:08:53 -0800606 "aec3/render_delay_controller_metrics_unittest.cc",
peah69221db2017-01-27 03:28:19 -0800607 "aec3/render_delay_controller_unittest.cc",
peah522d71b2017-02-23 05:16:26 -0800608 "aec3/render_signal_analyzer_unittest.cc",
609 "aec3/residual_echo_estimator_unittest.cc",
610 "aec3/shadow_filter_update_gain_unittest.cc",
611 "aec3/subtractor_unittest.cc",
612 "aec3/suppression_filter_unittest.cc",
613 "aec3/suppression_gain_unittest.cc",
peah5e79b292017-04-12 01:20:45 -0700614 "aec3/vector_math_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800615 "audio_processing_impl_locking_unittest.cc",
616 "audio_processing_impl_unittest.cc",
617 "audio_processing_unittest.cc",
ehmaldonadof49ff262017-01-23 04:26:02 -0800618 "beamformer/nonlinear_beamformer_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800619 "echo_cancellation_bit_exact_unittest.cc",
620 "echo_control_mobile_unittest.cc",
621 "echo_detector/circular_buffer_unittest.cc",
622 "echo_detector/mean_variance_estimator_unittest.cc",
623 "echo_detector/moving_max_unittest.cc",
624 "echo_detector/normalized_covariance_estimator_unittest.cc",
625 "gain_control_unittest.cc",
626 "level_controller/level_controller_unittest.cc",
627 "level_estimator_unittest.cc",
628 "low_cut_filter_unittest.cc",
629 "noise_suppression_unittest.cc",
630 "residual_echo_detector_unittest.cc",
631 "rms_level_unittest.cc",
632 "test/bitexactness_tools.cc",
633 "test/bitexactness_tools.h",
634 "test/debug_dump_replayer.cc",
635 "test/debug_dump_replayer.h",
636 "test/debug_dump_test.cc",
peah69221db2017-01-27 03:28:19 -0800637 "test/echo_canceller_test_tools.cc",
638 "test/echo_canceller_test_tools.h",
639 "test/echo_canceller_test_tools_unittest.cc",
ehmaldonado36268652017-01-19 08:27:11 -0800640 "test/test_utils.h",
641 "voice_detection_unittest.cc",
642 ]
643 }
644
645 if ((!build_with_chromium || is_win) && is_clang) {
646 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
647 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
648 }
649 }
650
ehmaldonado021eef32017-01-05 07:09:50 -0800651 rtc_source_set("audio_processing_perf_tests") {
652 # Has problems with autogenerated targets on Android and iOS
653 # Dependency chain (there may also be others):
654 # //webrtc/modules/audio_processing:audio_processing_perf_tests -->
655 # //webrtc/modules:modules_unittests --[private]-->
656 # //webrtc/modules:modules_unittests_apk -->
657 # //webrtc/modules:modules_unittests_apk__create -->
658 # //webrtc/modules:modules_unittests_apk__create__finalize -->
659 # //webrtc/modules:modules_unittests_apk__create__package --[private]-->
660 # //webrtc/modules:_modules_unittests__library
661 check_includes = false
662 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700663
664 # Skip restricting visibility on mobile platforms since the tests on those
665 # gets additional generated targets which would require many lines here to
666 # cover (which would be confusing to read and hard to maintain).
667 if (!is_android && !is_ios) {
668 visibility = [ "//webrtc:webrtc_perf_tests" ]
669 }
ehmaldonado021eef32017-01-05 07:09:50 -0800670 sources = [
671 "audio_processing_performance_unittest.cc",
672 "level_controller/level_controller_complexity_unittest.cc",
673 "residual_echo_detector_complexity_unittest.cc",
674 ]
675 deps = [
676 ":audio_processing",
677 ":audioproc_test_utils",
mbonadei7c2c8432017-04-07 00:59:12 -0700678 "../../base:protobuf_utils",
ehmaldonado021eef32017-01-05 07:09:50 -0800679 "//testing/gtest",
680 ]
mbonadei7c2c8432017-04-07 00:59:12 -0700681
ehmaldonado021eef32017-01-05 07:09:50 -0800682 if (rtc_enable_intelligibility_enhancer) {
683 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
684 } else {
685 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
686 }
687 }
688
ehmaldonado1fd08c12017-01-17 02:37:34 -0800689 if (rtc_enable_protobuf) {
690 rtc_executable("unpack_aecdump") {
691 testonly = true
692 sources = [
693 "test/unpack.cc",
694 ]
peahc3ec1fd2016-08-07 23:19:30 -0700695
ehmaldonado1fd08c12017-01-17 02:37:34 -0800696 deps = [
697 ":audio_processing",
698 ":audioproc_debug_proto",
699 ":audioproc_protobuf_utils",
700 ":audioproc_test_utils",
701 "../..:webrtc_common",
mbonadei7c2c8432017-04-07 00:59:12 -0700702 "../../base:protobuf_utils",
ehmaldonado1fd08c12017-01-17 02:37:34 -0800703 "../../base:rtc_base_approved",
704 "../../common_audio",
705 "../../system_wrappers:system_wrappers_default",
706 "//third_party/gflags:gflags",
707 ]
708 } # unpack_aecdump
peahc3ec1fd2016-08-07 23:19:30 -0700709
ehmaldonado1fd08c12017-01-17 02:37:34 -0800710 rtc_executable("audioproc_f") {
711 testonly = true
712 sources = [
713 "test/aec_dump_based_simulator.cc",
714 "test/aec_dump_based_simulator.h",
715 "test/audio_processing_simulator.cc",
716 "test/audio_processing_simulator.h",
717 "test/audioproc_float.cc",
718 "test/wav_based_simulator.cc",
719 "test/wav_based_simulator.h",
720 ]
peahc3ec1fd2016-08-07 23:19:30 -0700721
ehmaldonado1fd08c12017-01-17 02:37:34 -0800722 deps = [
723 ":audio_processing",
724 ":audioproc_debug_proto",
725 ":audioproc_protobuf_utils",
726 ":audioproc_test_utils",
mbonadei7c2c8432017-04-07 00:59:12 -0700727 "../../base:protobuf_utils",
ehmaldonado1fd08c12017-01-17 02:37:34 -0800728 "../../base:rtc_base_approved",
729 "../../common_audio:common_audio",
730 "../../system_wrappers",
731 "../../system_wrappers:system_wrappers_default",
732 "../../test:test_support",
733 "//testing/gtest",
734 "//third_party/gflags:gflags",
735 ]
736 } # audioproc_f
737 }
peahc3ec1fd2016-08-07 23:19:30 -0700738
ehmaldonado38a21322016-09-02 04:10:34 -0700739 rtc_source_set("audioproc_test_utils") {
kjellanderfb114242016-06-13 00:19:48 -0700740 testonly = true
741 sources = [
ehmaldonado529f83c2016-07-27 08:14:32 -0700742 "test/audio_buffer_tools.cc",
743 "test/audio_buffer_tools.h",
ivoc3cfb3ef2016-11-24 04:17:28 -0800744 "test/performance_timer.cc",
745 "test/performance_timer.h",
746 "test/simulator_buffers.cc",
747 "test/simulator_buffers.h",
kjellanderfb114242016-06-13 00:19:48 -0700748 "test/test_utils.cc",
749 "test/test_utils.h",
750 ]
751
kjellanderfb114242016-06-13 00:19:48 -0700752 deps = [
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800753 ":audio_processing",
mbonadei1140f972017-04-26 03:38:35 -0700754 "..:module_api",
kjellanderfb114242016-06-13 00:19:48 -0700755 "../../base:rtc_base_approved",
756 "../../common_audio",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800757 "../../system_wrappers:system_wrappers",
kjellanderfb114242016-06-13 00:19:48 -0700758 ]
759 }
760
ehmaldonado38a21322016-09-02 04:10:34 -0700761 rtc_executable("transient_suppression_test") {
kwiberg7a770e02016-08-25 02:32:43 -0700762 testonly = true
763 sources = [
764 "transient/file_utils.cc",
765 "transient/file_utils.h",
766 "transient/transient_suppression_test.cc",
767 ]
768 deps = [
769 ":audio_processing",
mbonadei1140f972017-04-26 03:38:35 -0700770 "..:module_api",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800771 "../..:webrtc_common",
772 "../../common_audio:common_audio",
kwiberg7a770e02016-08-25 02:32:43 -0700773 "../../system_wrappers:metrics_default",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800774 "../../system_wrappers:system_wrappers",
kwiberg7a770e02016-08-25 02:32:43 -0700775 "../../test:test_support",
776 "//testing/gtest",
777 "//third_party/gflags",
778 ]
kwiberg7a770e02016-08-25 02:32:43 -0700779 }
780
ehmaldonado38a21322016-09-02 04:10:34 -0700781 rtc_executable("click_annotate") {
kwiberg7a770e02016-08-25 02:32:43 -0700782 testonly = true
783 sources = [
784 "transient/click_annotate.cc",
785 "transient/file_utils.cc",
786 "transient/file_utils.h",
787 ]
788 deps = [
789 ":audio_processing",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800790 "../..:webrtc_common",
kwiberg7a770e02016-08-25 02:32:43 -0700791 "../../system_wrappers:metrics_default",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800792 "../../system_wrappers:system_wrappers",
kwiberg7a770e02016-08-25 02:32:43 -0700793 ]
794 }
795
ehmaldonado38a21322016-09-02 04:10:34 -0700796 rtc_executable("nonlinear_beamformer_test") {
kwiberg7a770e02016-08-25 02:32:43 -0700797 testonly = true
798 sources = [
799 "beamformer/nonlinear_beamformer_test.cc",
800 ]
801 deps = [
802 ":audio_processing",
803 ":audioproc_test_utils",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800804 "../../base:rtc_base_approved",
805 "../../common_audio:common_audio",
kwiberg7a770e02016-08-25 02:32:43 -0700806 "../../system_wrappers:metrics_default",
807 "//third_party/gflags",
808 ]
kwiberg7a770e02016-08-25 02:32:43 -0700809 }
810
peah1bcfce52016-08-26 07:16:04 -0700811 if (rtc_enable_intelligibility_enhancer) {
ehmaldonado38a21322016-09-02 04:10:34 -0700812 rtc_executable("intelligibility_proc") {
peah1bcfce52016-08-26 07:16:04 -0700813 testonly = true
814 sources = [
815 "intelligibility/test/intelligibility_proc.cc",
816 ]
817 deps = [
818 ":audio_processing",
819 ":audioproc_test_utils",
820 "../../system_wrappers:metrics_default",
821 "../../test:test_support",
822 "//testing/gtest",
823 "//third_party/gflags",
824 ]
kwiberg7a770e02016-08-25 02:32:43 -0700825 }
826 }
827
kjellanderfb114242016-06-13 00:19:48 -0700828 if (rtc_enable_protobuf) {
829 proto_library("audioproc_unittest_proto") {
830 sources = [
831 "test/unittest.proto",
832 ]
kjellandere3e902e2017-02-28 08:01:46 -0800833 proto_out_dir = "webrtc/modules/audio_processing/test"
kjellanderfb114242016-06-13 00:19:48 -0700834 }
835
kjellanderb62dbbe2016-09-23 00:38:52 -0700836 rtc_static_library("audioproc_protobuf_utils") {
kjellanderfb114242016-06-13 00:19:48 -0700837 sources = [
838 "test/protobuf_utils.cc",
839 "test/protobuf_utils.h",
840 ]
841
842 deps = [
ehmaldonadobcba64a2016-08-19 02:11:07 -0700843 ":audioproc_debug_proto",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800844 "../..:webrtc_common",
mbonadei7c2c8432017-04-07 00:59:12 -0700845 "../../base:protobuf_utils",
ehmaldonado64c4a7e2016-12-08 04:10:01 -0800846 "../../base:rtc_base_approved",
kjellanderfb114242016-06-13 00:19:48 -0700847 ]
848 }
849 }
850}