OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 "vad/vad_circular_buffer.h", | 223 "vad/vad_circular_buffer.h", |
224 "vad/voice_activity_detector.cc", | 224 "vad/voice_activity_detector.cc", |
225 "vad/voice_activity_detector.h", | 225 "vad/voice_activity_detector.h", |
226 "vad/voice_gmm_tables.h", | 226 "vad/voice_gmm_tables.h", |
227 "voice_detection_impl.cc", | 227 "voice_detection_impl.cc", |
228 "voice_detection_impl.h", | 228 "voice_detection_impl.h", |
229 ] | 229 ] |
230 | 230 |
231 defines = [] | 231 defines = [] |
232 deps = [ | 232 deps = [ |
| 233 ":aec_dump_interface", |
233 "..:module_api", | 234 "..:module_api", |
234 "../..:webrtc_common", | 235 "../..:webrtc_common", |
235 "../../audio/utility:audio_frame_operations", | 236 "../../audio/utility:audio_frame_operations", |
236 "../../base:gtest_prod", | 237 "../../base:gtest_prod", |
237 "../../base:protobuf_utils", | 238 "../../base:protobuf_utils", |
238 "../audio_coding:isac", | 239 "../audio_coding:isac", |
239 ] | 240 ] |
240 public_deps = [ | 241 public_deps = [ |
241 ":audio_processing_c", | 242 ":audio_processing_c", |
242 ] | 243 ] |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 # TODO(jschuh): Bug 1348: fix this warning. | 298 # TODO(jschuh): Bug 1348: fix this warning. |
298 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 299 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
299 | 300 |
300 deps += [ | 301 deps += [ |
301 "../../base:rtc_base_approved", | 302 "../../base:rtc_base_approved", |
302 "../../common_audio", | 303 "../../common_audio", |
303 "../../system_wrappers", | 304 "../../system_wrappers", |
304 ] | 305 ] |
305 } | 306 } |
306 | 307 |
| 308 rtc_source_set("aec_dump_interface") { |
| 309 sources = [ |
| 310 "include/aec_dump.cc", |
| 311 "include/aec_dump.h", |
| 312 ] |
| 313 |
| 314 deps = [ |
| 315 "../../base:rtc_base_approved", |
| 316 ] |
| 317 } |
| 318 |
307 rtc_source_set("audio_processing_c") { | 319 rtc_source_set("audio_processing_c") { |
308 visibility = [ ":*" ] # Only targets in this file can depend on this. | 320 visibility = [ ":*" ] # Only targets in this file can depend on this. |
309 sources = [ | 321 sources = [ |
310 "agc/legacy/analog_agc.c", | 322 "agc/legacy/analog_agc.c", |
311 "agc/legacy/analog_agc.h", | 323 "agc/legacy/analog_agc.h", |
312 "agc/legacy/digital_agc.c", | 324 "agc/legacy/digital_agc.c", |
313 "agc/legacy/digital_agc.h", | 325 "agc/legacy/digital_agc.h", |
314 "agc/legacy/gain_control.h", | 326 "agc/legacy/gain_control.h", |
315 ] | 327 ] |
316 | 328 |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 | 853 |
842 deps = [ | 854 deps = [ |
843 ":audioproc_debug_proto", | 855 ":audioproc_debug_proto", |
844 "../..:webrtc_common", | 856 "../..:webrtc_common", |
845 "../../base:protobuf_utils", | 857 "../../base:protobuf_utils", |
846 "../../base:rtc_base_approved", | 858 "../../base:rtc_base_approved", |
847 ] | 859 ] |
848 } | 860 } |
849 } | 861 } |
850 } | 862 } |
OLD | NEW |