| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "vad/vad_circular_buffer.h", | 227 "vad/vad_circular_buffer.h", |
| 228 "vad/voice_activity_detector.cc", | 228 "vad/voice_activity_detector.cc", |
| 229 "vad/voice_activity_detector.h", | 229 "vad/voice_activity_detector.h", |
| 230 "vad/voice_gmm_tables.h", | 230 "vad/voice_gmm_tables.h", |
| 231 "voice_detection_impl.cc", | 231 "voice_detection_impl.cc", |
| 232 "voice_detection_impl.h", | 232 "voice_detection_impl.h", |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 defines = [] | 235 defines = [] |
| 236 deps = [ | 236 deps = [ |
| 237 ":aec_dump_interface", |
| 237 "..:module_api", | 238 "..:module_api", |
| 238 "../..:webrtc_common", | 239 "../..:webrtc_common", |
| 239 "../../audio/utility:audio_frame_operations", | 240 "../../audio/utility:audio_frame_operations", |
| 240 "../../base:gtest_prod", | 241 "../../base:gtest_prod", |
| 241 "../../base:protobuf_utils", | 242 "../../base:protobuf_utils", |
| 242 "../audio_coding:isac", | 243 "../audio_coding:isac", |
| 243 ] | 244 ] |
| 244 public_deps = [ | 245 public_deps = [ |
| 245 ":audio_processing_c", | 246 ":audio_processing_c", |
| 246 ] | 247 ] |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 # TODO(jschuh): Bug 1348: fix this warning. | 302 # TODO(jschuh): Bug 1348: fix this warning. |
| 302 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 303 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 303 | 304 |
| 304 deps += [ | 305 deps += [ |
| 305 "../../base:rtc_base_approved", | 306 "../../base:rtc_base_approved", |
| 306 "../../common_audio", | 307 "../../common_audio", |
| 307 "../../system_wrappers", | 308 "../../system_wrappers", |
| 308 ] | 309 ] |
| 309 } | 310 } |
| 310 | 311 |
| 312 rtc_source_set("aec_dump_interface") { |
| 313 sources = [ |
| 314 "include/aec_dump.cc", |
| 315 "include/aec_dump.h", |
| 316 ] |
| 317 |
| 318 deps = [ |
| 319 "../../base:rtc_base_approved", |
| 320 ] |
| 321 } |
| 322 |
| 311 rtc_source_set("audio_processing_c") { | 323 rtc_source_set("audio_processing_c") { |
| 312 visibility = [ ":*" ] # Only targets in this file can depend on this. | 324 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 313 sources = [ | 325 sources = [ |
| 314 "agc/legacy/analog_agc.c", | 326 "agc/legacy/analog_agc.c", |
| 315 "agc/legacy/analog_agc.h", | 327 "agc/legacy/analog_agc.h", |
| 316 "agc/legacy/digital_agc.c", | 328 "agc/legacy/digital_agc.c", |
| 317 "agc/legacy/digital_agc.h", | 329 "agc/legacy/digital_agc.h", |
| 318 "agc/legacy/gain_control.h", | 330 "agc/legacy/gain_control.h", |
| 319 ] | 331 ] |
| 320 | 332 |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 846 | 858 |
| 847 deps = [ | 859 deps = [ |
| 848 ":audioproc_debug_proto", | 860 ":audioproc_debug_proto", |
| 849 "../..:webrtc_common", | 861 "../..:webrtc_common", |
| 850 "../../base:protobuf_utils", | 862 "../../base:protobuf_utils", |
| 851 "../../base:rtc_base_approved", | 863 "../../base:rtc_base_approved", |
| 852 ] | 864 ] |
| 853 } | 865 } |
| 854 } | 866 } |
| 855 } | 867 } |
| OLD | NEW |