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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 defines += [ | 590 defines += [ |
591 "WEBRTC_AUDIOPROC_DEBUG_DUMP", | 591 "WEBRTC_AUDIOPROC_DEBUG_DUMP", |
592 "WEBRTC_NETEQ_UNITTEST_BITEXACT", | 592 "WEBRTC_NETEQ_UNITTEST_BITEXACT", |
593 ] | 593 ] |
594 deps += [ | 594 deps += [ |
595 "audio_coding:neteq_unittest_proto", | 595 "audio_coding:neteq_unittest_proto", |
596 "audio_processing:audioproc_protobuf_utils", | 596 "audio_processing:audioproc_protobuf_utils", |
597 "audio_processing:audioproc_unittest_proto", | 597 "audio_processing:audioproc_unittest_proto", |
598 ] | 598 ] |
599 sources += [ | 599 sources += [ |
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", | |
606 "audio_processing/audio_processing_impl_locking_unittest.cc", | 600 "audio_processing/audio_processing_impl_locking_unittest.cc", |
607 "audio_processing/audio_processing_impl_unittest.cc", | 601 "audio_processing/audio_processing_impl_unittest.cc", |
608 "audio_processing/audio_processing_unittest.cc", | 602 "audio_processing/audio_processing_unittest.cc", |
609 "audio_processing/echo_cancellation_bit_exact_unittest.cc", | 603 "audio_processing/echo_cancellation_bit_exact_unittest.cc", |
610 "audio_processing/echo_control_mobile_unittest.cc", | 604 "audio_processing/echo_control_mobile_unittest.cc", |
611 "audio_processing/echo_detector/circular_buffer_unittest.cc", | 605 "audio_processing/echo_detector/circular_buffer_unittest.cc", |
612 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", | 606 "audio_processing/echo_detector/mean_variance_estimator_unittest.cc", |
613 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", | 607 "audio_processing/echo_detector/normalized_covariance_estimator_unittest
.cc", |
614 "audio_processing/gain_control_unittest.cc", | 608 "audio_processing/gain_control_unittest.cc", |
615 "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... |
759 "../test:test_common", | 753 "../test:test_common", |
760 "../test:test_main", | 754 "../test:test_main", |
761 "remote_bitrate_estimator:bwe_simulator_lib", | 755 "remote_bitrate_estimator:bwe_simulator_lib", |
762 "video_capture", | 756 "video_capture", |
763 "//testing/gmock", | 757 "//testing/gmock", |
764 "//testing/gtest", | 758 "//testing/gtest", |
765 "//third_party/gflags", | 759 "//third_party/gflags", |
766 ] | 760 ] |
767 } | 761 } |
768 } | 762 } |
OLD | NEW |