Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2778783002: AecDump interface (Closed)
Patch Set: Put capture logging in methods. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 "../..:webrtc_common", 234 "../..:webrtc_common",
234 "../../audio/utility:audio_frame_operations", 235 "../../audio/utility:audio_frame_operations",
235 "../../base:gtest_prod", 236 "../../base:gtest_prod",
236 "../../base:protobuf_utils", 237 "../../base:protobuf_utils",
237 "../audio_coding:isac", 238 "../audio_coding:isac",
238 ] 239 ]
239 public_deps = [ 240 public_deps = [
240 ":audio_processing_c", 241 ":audio_processing_c",
241 ] 242 ]
242 243
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 # TODO(jschuh): Bug 1348: fix this warning. 297 # TODO(jschuh): Bug 1348: fix this warning.
297 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 298 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
298 299
299 deps += [ 300 deps += [
300 "../../base:rtc_base_approved", 301 "../../base:rtc_base_approved",
301 "../../common_audio", 302 "../../common_audio",
302 "../../system_wrappers", 303 "../../system_wrappers",
303 ] 304 ]
304 } 305 }
305 306
307 rtc_source_set("aec_dump_interface") {
308 sources = [
309 "include/aec_dump.cc",
310 "include/aec_dump.h",
311 ]
312
313 deps = [
314 "../../base:rtc_base_approved",
315 ]
316 }
317
306 rtc_source_set("audio_processing_c") { 318 rtc_source_set("audio_processing_c") {
307 visibility = [ ":*" ] # Only targets in this file can depend on this. 319 visibility = [ ":*" ] # Only targets in this file can depend on this.
308 sources = [ 320 sources = [
309 "agc/legacy/analog_agc.c", 321 "agc/legacy/analog_agc.c",
310 "agc/legacy/analog_agc.h", 322 "agc/legacy/analog_agc.h",
311 "agc/legacy/digital_agc.c", 323 "agc/legacy/digital_agc.c",
312 "agc/legacy/digital_agc.h", 324 "agc/legacy/digital_agc.h",
313 "agc/legacy/gain_control.h", 325 "agc/legacy/gain_control.h",
314 ] 326 ]
315 327
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 835
824 deps = [ 836 deps = [
825 ":audioproc_debug_proto", 837 ":audioproc_debug_proto",
826 "../..:webrtc_common", 838 "../..:webrtc_common",
827 "../../base:protobuf_utils", 839 "../../base:protobuf_utils",
828 "../../base:rtc_base_approved", 840 "../../base:rtc_base_approved",
829 ] 841 ]
830 } 842 }
831 } 843 }
832 } 844 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698