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

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

Issue 3005483002: Replace remaining gflags usages with rtc_base/flags (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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 deps = [ 717 deps = [
718 ":audio_processing", 718 ":audio_processing",
719 ":audioproc_debug_proto", 719 ":audioproc_debug_proto",
720 ":audioproc_protobuf_utils", 720 ":audioproc_protobuf_utils",
721 ":audioproc_test_utils", 721 ":audioproc_test_utils",
722 "../..:webrtc_common", 722 "../..:webrtc_common",
723 "../../common_audio", 723 "../../common_audio",
724 "../../rtc_base:protobuf_utils", 724 "../../rtc_base:protobuf_utils",
725 "../../rtc_base:rtc_base_approved", 725 "../../rtc_base:rtc_base_approved",
726 "../../system_wrappers:system_wrappers_default", 726 "../../system_wrappers:system_wrappers_default",
727 "//third_party/gflags:gflags",
728 ] 727 ]
729 } # unpack_aecdump 728 } # unpack_aecdump
730 729
731 rtc_executable("audioproc_f") { 730 rtc_executable("audioproc_f") {
732 testonly = true 731 testonly = true
733 sources = [ 732 sources = [
734 "test/aec_dump_based_simulator.cc", 733 "test/aec_dump_based_simulator.cc",
735 "test/aec_dump_based_simulator.h", 734 "test/aec_dump_based_simulator.h",
736 "test/audio_processing_simulator.cc", 735 "test/audio_processing_simulator.cc",
737 "test/audio_processing_simulator.h", 736 "test/audio_processing_simulator.h",
(...skipping 10 matching lines...) Expand all
748 "../../common_audio:common_audio", 747 "../../common_audio:common_audio",
749 "../../rtc_base:protobuf_utils", 748 "../../rtc_base:protobuf_utils",
750 "../../rtc_base:rtc_base_approved", 749 "../../rtc_base:rtc_base_approved",
751 "../../rtc_base:rtc_task_queue", 750 "../../rtc_base:rtc_task_queue",
752 "../../system_wrappers", 751 "../../system_wrappers",
753 "../../system_wrappers:system_wrappers_default", 752 "../../system_wrappers:system_wrappers_default",
754 "../../test:test_support", 753 "../../test:test_support",
755 "aec_dump", 754 "aec_dump",
756 "aec_dump:aec_dump_impl", 755 "aec_dump:aec_dump_impl",
757 "//testing/gtest", 756 "//testing/gtest",
758 "//third_party/gflags:gflags",
759 ] 757 ]
760 } # audioproc_f 758 } # audioproc_f
761 } 759 }
762 760
763 rtc_source_set("audioproc_test_utils") { 761 rtc_source_set("audioproc_test_utils") {
764 testonly = true 762 testonly = true
765 sources = [ 763 sources = [
766 "test/audio_buffer_tools.cc", 764 "test/audio_buffer_tools.cc",
767 "test/audio_buffer_tools.h", 765 "test/audio_buffer_tools.h",
768 "test/performance_timer.cc", 766 "test/performance_timer.cc",
(...skipping 18 matching lines...) Expand all
787 sources = [ 785 sources = [
788 "transient/file_utils.cc", 786 "transient/file_utils.cc",
789 "transient/file_utils.h", 787 "transient/file_utils.h",
790 "transient/transient_suppression_test.cc", 788 "transient/transient_suppression_test.cc",
791 ] 789 ]
792 deps = [ 790 deps = [
793 ":audio_processing", 791 ":audio_processing",
794 "..:module_api", 792 "..:module_api",
795 "../..:webrtc_common", 793 "../..:webrtc_common",
796 "../../common_audio:common_audio", 794 "../../common_audio:common_audio",
795 "../../rtc_base:rtc_base_approved",
797 "../../system_wrappers:metrics_default", 796 "../../system_wrappers:metrics_default",
798 "../../system_wrappers:system_wrappers", 797 "../../system_wrappers:system_wrappers",
799 "../../test:test_support", 798 "../../test:test_support",
800 "//testing/gtest", 799 "//testing/gtest",
801 "//third_party/gflags",
802 ] 800 ]
803 } 801 }
804 802
805 rtc_executable("click_annotate") { 803 rtc_executable("click_annotate") {
806 testonly = true 804 testonly = true
807 sources = [ 805 sources = [
808 "transient/click_annotate.cc", 806 "transient/click_annotate.cc",
809 "transient/file_utils.cc", 807 "transient/file_utils.cc",
810 "transient/file_utils.h", 808 "transient/file_utils.h",
811 ] 809 ]
812 deps = [ 810 deps = [
813 ":audio_processing", 811 ":audio_processing",
814 "../..:webrtc_common", 812 "../..:webrtc_common",
815 "../../system_wrappers:metrics_default", 813 "../../system_wrappers:metrics_default",
816 "../../system_wrappers:system_wrappers", 814 "../../system_wrappers:system_wrappers",
817 ] 815 ]
818 } 816 }
819 817
820 rtc_executable("nonlinear_beamformer_test") { 818 rtc_executable("nonlinear_beamformer_test") {
821 testonly = true 819 testonly = true
822 sources = [ 820 sources = [
823 "beamformer/nonlinear_beamformer_test.cc", 821 "beamformer/nonlinear_beamformer_test.cc",
824 ] 822 ]
825 deps = [ 823 deps = [
826 ":audio_processing", 824 ":audio_processing",
827 ":audioproc_test_utils", 825 ":audioproc_test_utils",
828 "../../common_audio:common_audio", 826 "../../common_audio:common_audio",
829 "../../rtc_base:rtc_base_approved", 827 "../../rtc_base:rtc_base_approved",
830 "../../system_wrappers:metrics_default", 828 "../../system_wrappers:metrics_default",
831 "//third_party/gflags",
832 ] 829 ]
833 } 830 }
834 831
835 if (rtc_enable_intelligibility_enhancer) { 832 if (rtc_enable_intelligibility_enhancer) {
836 rtc_executable("intelligibility_proc") { 833 rtc_executable("intelligibility_proc") {
837 testonly = true 834 testonly = true
838 sources = [ 835 sources = [
839 "intelligibility/test/intelligibility_proc.cc", 836 "intelligibility/test/intelligibility_proc.cc",
840 ] 837 ]
841 deps = [ 838 deps = [
842 ":audio_processing", 839 ":audio_processing",
843 ":audioproc_test_utils", 840 ":audioproc_test_utils",
841 "../../rtc_base:rtc_base_approved",
844 "../../system_wrappers:metrics_default", 842 "../../system_wrappers:metrics_default",
845 "../../test:test_support", 843 "../../test:test_support",
846 "//testing/gtest", 844 "//testing/gtest",
847 "//third_party/gflags",
848 ] 845 ]
849 } 846 }
850 } 847 }
851 848
852 if (rtc_enable_protobuf) { 849 if (rtc_enable_protobuf) {
853 proto_library("audioproc_unittest_proto") { 850 proto_library("audioproc_unittest_proto") {
854 sources = [ 851 sources = [
855 "test/unittest.proto", 852 "test/unittest.proto",
856 ] 853 ]
857 proto_out_dir = "webrtc/modules/audio_processing/test" 854 proto_out_dir = "webrtc/modules/audio_processing/test"
858 } 855 }
859 856
860 rtc_static_library("audioproc_protobuf_utils") { 857 rtc_static_library("audioproc_protobuf_utils") {
861 sources = [ 858 sources = [
862 "test/protobuf_utils.cc", 859 "test/protobuf_utils.cc",
863 "test/protobuf_utils.h", 860 "test/protobuf_utils.h",
864 ] 861 ]
865 862
866 deps = [ 863 deps = [
867 ":audioproc_debug_proto", 864 ":audioproc_debug_proto",
868 "../..:webrtc_common", 865 "../..:webrtc_common",
869 "../../rtc_base:protobuf_utils", 866 "../../rtc_base:protobuf_utils",
870 "../../rtc_base:rtc_base_approved", 867 "../../rtc_base:rtc_base_approved",
871 ] 868 ]
872 } 869 }
873 } 870 }
874 } 871 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698