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/echo_canceller3_unittest.cc", |
599 "audio_processing/audio_processing_impl_locking_unittest.cc", | 600 "audio_processing/audio_processing_impl_locking_unittest.cc", |
600 "audio_processing/audio_processing_impl_unittest.cc", | 601 "audio_processing/audio_processing_impl_unittest.cc", |
601 "audio_processing/audio_processing_unittest.cc", | 602 "audio_processing/audio_processing_unittest.cc", |
602 "audio_processing/echo_cancellation_bit_exact_unittest.cc", | 603 "audio_processing/echo_cancellation_bit_exact_unittest.cc", |
603 "audio_processing/echo_control_mobile_unittest.cc", | 604 "audio_processing/echo_control_mobile_unittest.cc", |
604 "audio_processing/echo_detector/circular_buffer_unittest.cc", | 605 "audio_processing/echo_detector/circular_buffer_unittest.cc", |
605 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", | 606 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", |
606 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", | 607 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", |
607 "audio_processing/gain_control_unittest.cc", | 608 "audio_processing/gain_control_unittest.cc", |
608 "audio_processing/level_controller/level_controller_unittest.cc", | 609 "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", | 753 "../test:test_common", |
753 "../test:test_main", | 754 "../test:test_main", |
754 "remote_bitrate_estimator:bwe_simulator_lib", | 755 "remote_bitrate_estimator:bwe_simulator_lib", |
755 "video_capture", | 756 "video_capture", |
756 "//testing/gmock", | 757 "//testing/gmock", |
757 "//testing/gtest", | 758 "//testing/gtest", |
758 "//third_party/gflags", | 759 "//third_party/gflags", |
759 ] | 760 ] |
760 } | 761 } |
761 } | 762 } |
OLD | NEW |