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

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

Issue 2864373002: Change existing aec dump tests to use webrtc::AecDump. (Closed)
Patch Set: Mini-change, forgot about DCHECK. Created 3 years, 6 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 } else { 588 } else {
589 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] 589 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ]
590 } 590 }
591 591
592 if (rtc_enable_protobuf) { 592 if (rtc_enable_protobuf) {
593 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] 593 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
594 deps += [ 594 deps += [
595 ":audioproc_debug_proto", 595 ":audioproc_debug_proto",
596 ":audioproc_protobuf_utils", 596 ":audioproc_protobuf_utils",
597 ":audioproc_unittest_proto", 597 ":audioproc_unittest_proto",
598 "../../base:rtc_task_queue",
599 "aec_dump",
600 "aec_dump:aec_dump_unittests",
598 ] 601 ]
599 sources += [ 602 sources += [
600 "aec3/adaptive_fir_filter_unittest.cc", 603 "aec3/adaptive_fir_filter_unittest.cc",
601 "aec3/aec3_fft_unittest.cc", 604 "aec3/aec3_fft_unittest.cc",
602 "aec3/aec_state_unittest.cc", 605 "aec3/aec_state_unittest.cc",
603 "aec3/block_framer_unittest.cc", 606 "aec3/block_framer_unittest.cc",
604 "aec3/block_processor_metrics_unittest.cc", 607 "aec3/block_processor_metrics_unittest.cc",
605 "aec3/block_processor_unittest.cc", 608 "aec3/block_processor_unittest.cc",
606 "aec3/cascaded_biquad_filter_unittest.cc", 609 "aec3/cascaded_biquad_filter_unittest.cc",
607 "aec3/comfort_noise_generator_unittest.cc", 610 "aec3/comfort_noise_generator_unittest.cc",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 "test/wav_based_simulator.h", 741 "test/wav_based_simulator.h",
739 ] 742 ]
740 743
741 deps = [ 744 deps = [
742 ":audio_processing", 745 ":audio_processing",
743 ":audioproc_debug_proto", 746 ":audioproc_debug_proto",
744 ":audioproc_protobuf_utils", 747 ":audioproc_protobuf_utils",
745 ":audioproc_test_utils", 748 ":audioproc_test_utils",
746 "../../base:protobuf_utils", 749 "../../base:protobuf_utils",
747 "../../base:rtc_base_approved", 750 "../../base:rtc_base_approved",
751 "../../base:rtc_task_queue",
748 "../../common_audio:common_audio", 752 "../../common_audio:common_audio",
749 "../../system_wrappers", 753 "../../system_wrappers",
750 "../../system_wrappers:system_wrappers_default", 754 "../../system_wrappers:system_wrappers_default",
751 "../../test:test_support", 755 "../../test:test_support",
756 "aec_dump",
757 "aec_dump:aec_dump_impl",
752 "//testing/gtest", 758 "//testing/gtest",
753 "//third_party/gflags:gflags", 759 "//third_party/gflags:gflags",
754 ] 760 ]
755 } # audioproc_f 761 } # audioproc_f
756 } 762 }
757 763
758 rtc_source_set("audioproc_test_utils") { 764 rtc_source_set("audioproc_test_utils") {
759 testonly = true 765 testonly = true
760 sources = [ 766 sources = [
761 "test/audio_buffer_tools.cc", 767 "test/audio_buffer_tools.cc",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 866
861 deps = [ 867 deps = [
862 ":audioproc_debug_proto", 868 ":audioproc_debug_proto",
863 "../..:webrtc_common", 869 "../..:webrtc_common",
864 "../../base:protobuf_utils", 870 "../../base:protobuf_utils",
865 "../../base:rtc_base_approved", 871 "../../base:rtc_base_approved",
866 ] 872 ]
867 } 873 }
868 } 874 }
869 } 875 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698