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

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

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ":aec_dump_interface",
238 "..:module_api", 238 "..:module_api",
239 "../..:webrtc_common", 239 "../..:webrtc_common",
240 "../../api:array_view",
240 "../../audio/utility:audio_frame_operations", 241 "../../audio/utility:audio_frame_operations",
241 "../../rtc_base:gtest_prod", 242 "../../rtc_base:gtest_prod",
242 "../../rtc_base:protobuf_utils", 243 "../../rtc_base:protobuf_utils",
243 "../audio_coding:isac", 244 "../audio_coding:isac",
244 ] 245 ]
245 public_deps = [ 246 public_deps = [
246 ":audio_processing_c", 247 ":audio_processing_c",
247 ] 248 ]
248 249
249 if (apm_debug_dump) { 250 if (apm_debug_dump) {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 ] 310 ]
310 } 311 }
311 312
312 rtc_source_set("aec_dump_interface") { 313 rtc_source_set("aec_dump_interface") {
313 sources = [ 314 sources = [
314 "include/aec_dump.cc", 315 "include/aec_dump.cc",
315 "include/aec_dump.h", 316 "include/aec_dump.h",
316 ] 317 ]
317 318
318 deps = [ 319 deps = [
320 "../../api:array_view",
319 "../../rtc_base:rtc_base_approved", 321 "../../rtc_base:rtc_base_approved",
320 ] 322 ]
321 } 323 }
322 324
323 rtc_source_set("audio_processing_c") { 325 rtc_source_set("audio_processing_c") {
324 visibility = [ ":*" ] # Only targets in this file can depend on this. 326 visibility = [ ":*" ] # Only targets in this file can depend on this.
325 sources = [ 327 sources = [
326 "agc/legacy/analog_agc.c", 328 "agc/legacy/analog_agc.c",
327 "agc/legacy/analog_agc.h", 329 "agc/legacy/analog_agc.h",
328 "agc/legacy/digital_agc.c", 330 "agc/legacy/digital_agc.c",
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 "vad/vad_audio_proc_unittest.cc", 545 "vad/vad_audio_proc_unittest.cc",
544 "vad/vad_circular_buffer_unittest.cc", 546 "vad/vad_circular_buffer_unittest.cc",
545 "vad/voice_activity_detector_unittest.cc", 547 "vad/voice_activity_detector_unittest.cc",
546 ] 548 ]
547 549
548 deps = [ 550 deps = [
549 ":audio_processing", 551 ":audio_processing",
550 ":audioproc_test_utils", 552 ":audioproc_test_utils",
551 "..:module_api", 553 "..:module_api",
552 "../..:webrtc_common", 554 "../..:webrtc_common",
555 "../../api:array_view",
553 "../../common_audio:common_audio", 556 "../../common_audio:common_audio",
554 "../../rtc_base:gtest_prod", 557 "../../rtc_base:gtest_prod",
555 "../../rtc_base:protobuf_utils", 558 "../../rtc_base:protobuf_utils",
556 "../../rtc_base:rtc_base", 559 "../../rtc_base:rtc_base",
557 "../../rtc_base:rtc_base_approved", 560 "../../rtc_base:rtc_base_approved",
558 "../../system_wrappers:system_wrappers", 561 "../../system_wrappers:system_wrappers",
559 "../../test:test_support", 562 "../../test:test_support",
560 "../audio_coding:neteq_tools", 563 "../audio_coding:neteq_tools",
561 "aec_dump:mock_aec_dump_unittests", 564 "aec_dump:mock_aec_dump_unittests",
562 "test/conversational_speech:unittest", 565 "test/conversational_speech:unittest",
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "test/performance_timer.h", 770 "test/performance_timer.h",
768 "test/simulator_buffers.cc", 771 "test/simulator_buffers.cc",
769 "test/simulator_buffers.h", 772 "test/simulator_buffers.h",
770 "test/test_utils.cc", 773 "test/test_utils.cc",
771 "test/test_utils.h", 774 "test/test_utils.h",
772 ] 775 ]
773 776
774 deps = [ 777 deps = [
775 ":audio_processing", 778 ":audio_processing",
776 "..:module_api", 779 "..:module_api",
780 "../../api:array_view",
777 "../../common_audio", 781 "../../common_audio",
778 "../../rtc_base:rtc_base_approved", 782 "../../rtc_base:rtc_base_approved",
779 "../../system_wrappers:system_wrappers", 783 "../../system_wrappers:system_wrappers",
780 ] 784 ]
781 } 785 }
782 786
783 rtc_executable("transient_suppression_test") { 787 rtc_executable("transient_suppression_test") {
784 testonly = true 788 testonly = true
785 sources = [ 789 sources = [
786 "transient/file_utils.cc", 790 "transient/file_utils.cc",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 866
863 deps = [ 867 deps = [
864 ":audioproc_debug_proto", 868 ":audioproc_debug_proto",
865 "../..:webrtc_common", 869 "../..:webrtc_common",
866 "../../rtc_base:protobuf_utils", 870 "../../rtc_base:protobuf_utils",
867 "../../rtc_base:rtc_base_approved", 871 "../../rtc_base:rtc_base_approved",
868 ] 872 ]
869 } 873 }
870 } 874 }
871 } 875 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_mixer/gain_change_calculator.h ('k') | webrtc/modules/audio_processing/aec3/adaptive_fir_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698