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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 "test/wav_based_simulator.h", | 731 "test/wav_based_simulator.h", |
732 ] | 732 ] |
733 | 733 |
734 deps = [ | 734 deps = [ |
735 ":audio_processing", | 735 ":audio_processing", |
736 ":audioproc_debug_proto", | 736 ":audioproc_debug_proto", |
737 ":audioproc_protobuf_utils", | 737 ":audioproc_protobuf_utils", |
738 ":audioproc_test_utils", | 738 ":audioproc_test_utils", |
739 "../../base:protobuf_utils", | 739 "../../base:protobuf_utils", |
740 "../../base:rtc_base_approved", | 740 "../../base:rtc_base_approved", |
| 741 "../../base:rtc_task_queue", |
741 "../../common_audio:common_audio", | 742 "../../common_audio:common_audio", |
742 "../../system_wrappers", | 743 "../../system_wrappers", |
743 "../../system_wrappers:system_wrappers_default", | 744 "../../system_wrappers:system_wrappers_default", |
744 "../../test:test_support", | 745 "../../test:test_support", |
| 746 "aec_dump", |
745 "//testing/gtest", | 747 "//testing/gtest", |
746 "//third_party/gflags:gflags", | 748 "//third_party/gflags:gflags", |
747 ] | 749 ] |
748 } # audioproc_f | 750 } # audioproc_f |
749 } | 751 } |
750 | 752 |
751 rtc_source_set("audioproc_test_utils") { | 753 rtc_source_set("audioproc_test_utils") { |
752 testonly = true | 754 testonly = true |
753 sources = [ | 755 sources = [ |
754 "test/audio_buffer_tools.cc", | 756 "test/audio_buffer_tools.cc", |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 | 855 |
854 deps = [ | 856 deps = [ |
855 ":audioproc_debug_proto", | 857 ":audioproc_debug_proto", |
856 "../..:webrtc_common", | 858 "../..:webrtc_common", |
857 "../../base:protobuf_utils", | 859 "../../base:protobuf_utils", |
858 "../../base:rtc_base_approved", | 860 "../../base:rtc_base_approved", |
859 ] | 861 ] |
860 } | 862 } |
861 } | 863 } |
862 } | 864 } |
OLD | NEW |