OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 import("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 defines += [ | 589 defines += [ |
590 "WEBRTC_AUDIOPROC_DEBUG_DUMP", | 590 "WEBRTC_AUDIOPROC_DEBUG_DUMP", |
591 "WEBRTC_NETEQ_UNITTEST_BITEXACT", | 591 "WEBRTC_NETEQ_UNITTEST_BITEXACT", |
592 ] | 592 ] |
593 deps += [ | 593 deps += [ |
594 "audio_coding:neteq_unittest_proto", | 594 "audio_coding:neteq_unittest_proto", |
595 "audio_processing:audioproc_protobuf_utils", | 595 "audio_processing:audioproc_protobuf_utils", |
596 "audio_processing:audioproc_unittest_proto", | 596 "audio_processing:audioproc_unittest_proto", |
597 ] | 597 ] |
598 sources += [ | 598 sources += [ |
| 599 "audio_processing/aec3/aec3_constants_unittest.cc", |
| 600 "audio_processing/aec3/block_framer_unittest.cc", |
| 601 "audio_processing/aec3/block_processor_unittest.cc", |
| 602 "audio_processing/aec3/cascaded_biquad_filter_unittest.cc", |
| 603 "audio_processing/aec3/echo_canceller3_unittest.cc", |
| 604 "audio_processing/aec3/frame_blocker_unittest.cc", |
| 605 "audio_processing/aec3/mock/mock_block_processor.h", |
599 "audio_processing/audio_processing_impl_locking_unittest.cc", | 606 "audio_processing/audio_processing_impl_locking_unittest.cc", |
600 "audio_processing/audio_processing_impl_unittest.cc", | 607 "audio_processing/audio_processing_impl_unittest.cc", |
601 "audio_processing/audio_processing_unittest.cc", | 608 "audio_processing/audio_processing_unittest.cc", |
602 "audio_processing/echo_cancellation_bit_exact_unittest.cc", | 609 "audio_processing/echo_cancellation_bit_exact_unittest.cc", |
603 "audio_processing/echo_control_mobile_unittest.cc", | 610 "audio_processing/echo_control_mobile_unittest.cc", |
604 "audio_processing/echo_detector/circular_buffer_unittest.cc", | 611 "audio_processing/echo_detector/circular_buffer_unittest.cc", |
605 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", | 612 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", |
606 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", | 613 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", |
607 "audio_processing/gain_control_unittest.cc", | 614 "audio_processing/gain_control_unittest.cc", |
608 "audio_processing/level_controller/level_controller_unittest.cc", | 615 "audio_processing/level_controller/level_controller_unittest.cc", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 "../test:test_common", | 759 "../test:test_common", |
753 "../test:test_main", | 760 "../test:test_main", |
754 "remote_bitrate_estimator:bwe_simulator_lib", | 761 "remote_bitrate_estimator:bwe_simulator_lib", |
755 "video_capture", | 762 "video_capture", |
756 "//testing/gmock", | 763 "//testing/gmock", |
757 "//testing/gtest", | 764 "//testing/gtest", |
758 "//third_party/gflags", | 765 "//third_party/gflags", |
759 ] | 766 ] |
760 } | 767 } |
761 } | 768 } |
OLD | NEW |