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 591 matching lines...) Loading... |
602 "audio_processing/echo_control_mobile_unittest.cc", | 602 "audio_processing/echo_control_mobile_unittest.cc", |
603 "audio_processing/echo_detector/circular_buffer_unittest.cc", | 603 "audio_processing/echo_detector/circular_buffer_unittest.cc", |
604 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", | 604 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", |
605 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", | 605 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", |
606 "audio_processing/gain_control_unittest.cc", | 606 "audio_processing/gain_control_unittest.cc", |
607 "audio_processing/level_controller/level_controller_unittest.cc", | 607 "audio_processing/level_controller/level_controller_unittest.cc", |
608 "audio_processing/level_estimator_unittest.cc", | 608 "audio_processing/level_estimator_unittest.cc", |
609 "audio_processing/low_cut_filter_unittest.cc", | 609 "audio_processing/low_cut_filter_unittest.cc", |
610 "audio_processing/noise_suppression_unittest.cc", | 610 "audio_processing/noise_suppression_unittest.cc", |
611 "audio_processing/residual_echo_detector_unittest.cc", | 611 "audio_processing/residual_echo_detector_unittest.cc", |
| 612 "audio_processing/rms_level_unittest.cc", |
612 "audio_processing/test/bitexactness_tools.cc", | 613 "audio_processing/test/bitexactness_tools.cc", |
613 "audio_processing/test/bitexactness_tools.h", | 614 "audio_processing/test/bitexactness_tools.h", |
614 "audio_processing/test/debug_dump_replayer.cc", | 615 "audio_processing/test/debug_dump_replayer.cc", |
615 "audio_processing/test/debug_dump_replayer.h", | 616 "audio_processing/test/debug_dump_replayer.h", |
616 "audio_processing/test/debug_dump_test.cc", | 617 "audio_processing/test/debug_dump_test.cc", |
617 "audio_processing/test/test_utils.h", | 618 "audio_processing/test/test_utils.h", |
618 "audio_processing/voice_detection_unittest.cc", | 619 "audio_processing/voice_detection_unittest.cc", |
619 ] | 620 ] |
620 } | 621 } |
621 | 622 |
(...skipping 128 matching lines...) Loading... |
750 "../test:test_common", | 751 "../test:test_common", |
751 "../test:test_support_main", | 752 "../test:test_support_main", |
752 "remote_bitrate_estimator:bwe_simulator_lib", | 753 "remote_bitrate_estimator:bwe_simulator_lib", |
753 "video_capture", | 754 "video_capture", |
754 "//testing/gmock", | 755 "//testing/gmock", |
755 "//testing/gtest", | 756 "//testing/gtest", |
756 "//third_party/gflags", | 757 "//third_party/gflags", |
757 ] | 758 ] |
758 } | 759 } |
759 } | 760 } |
OLD | NEW |