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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 "audio_processing/aec3/echo_canceller3_unittest.cc", | 599 "audio_processing/aec3/echo_canceller3_unittest.cc", |
600 "audio_processing/aec3/frame_blocker_unittest.cc", | 600 "audio_processing/aec3/frame_blocker_unittest.cc", |
601 "audio_processing/aec3/mock/mock_block_processor.h", | 601 "audio_processing/aec3/mock/mock_block_processor.h", |
602 "audio_processing/audio_processing_impl_locking_unittest.cc", | 602 "audio_processing/audio_processing_impl_locking_unittest.cc", |
603 "audio_processing/audio_processing_impl_unittest.cc", | 603 "audio_processing/audio_processing_impl_unittest.cc", |
604 "audio_processing/audio_processing_unittest.cc", | 604 "audio_processing/audio_processing_unittest.cc", |
605 "audio_processing/echo_cancellation_bit_exact_unittest.cc", | 605 "audio_processing/echo_cancellation_bit_exact_unittest.cc", |
606 "audio_processing/echo_control_mobile_unittest.cc", | 606 "audio_processing/echo_control_mobile_unittest.cc", |
607 "audio_processing/echo_detector/circular_buffer_unittest.cc", | 607 "audio_processing/echo_detector/circular_buffer_unittest.cc", |
608 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", | 608 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", |
| 609 "audio_processing/echo_detector/moving_max_unittest.cc", |
609 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", | 610 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", |
610 "audio_processing/gain_control_unittest.cc", | 611 "audio_processing/gain_control_unittest.cc", |
611 "audio_processing/level_controller/level_controller_unittest.cc", | 612 "audio_processing/level_controller/level_controller_unittest.cc", |
612 "audio_processing/level_estimator_unittest.cc", | 613 "audio_processing/level_estimator_unittest.cc", |
613 "audio_processing/low_cut_filter_unittest.cc", | 614 "audio_processing/low_cut_filter_unittest.cc", |
614 "audio_processing/noise_suppression_unittest.cc", | 615 "audio_processing/noise_suppression_unittest.cc", |
615 "audio_processing/residual_echo_detector_unittest.cc", | 616 "audio_processing/residual_echo_detector_unittest.cc", |
616 "audio_processing/rms_level_unittest.cc", | 617 "audio_processing/rms_level_unittest.cc", |
617 "audio_processing/test/bitexactness_tools.cc", | 618 "audio_processing/test/bitexactness_tools.cc", |
618 "audio_processing/test/bitexactness_tools.h", | 619 "audio_processing/test/bitexactness_tools.h", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 "../test:test_common", | 756 "../test:test_common", |
756 "../test:test_main", | 757 "../test:test_main", |
757 "remote_bitrate_estimator:bwe_simulator_lib", | 758 "remote_bitrate_estimator:bwe_simulator_lib", |
758 "video_capture", | 759 "video_capture", |
759 "//testing/gmock", | 760 "//testing/gmock", |
760 "//testing/gtest", | 761 "//testing/gtest", |
761 "//third_party/gflags", | 762 "//third_party/gflags", |
762 ] | 763 ] |
763 } | 764 } |
764 } | 765 } |
OLD | NEW |