Chromium Code Reviews| 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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 579 "audio_processing:audioproc_protobuf_utils", | 579 "audio_processing:audioproc_protobuf_utils", |
| 580 "audio_processing:audioproc_unittest_proto", | 580 "audio_processing:audioproc_unittest_proto", |
| 581 ] | 581 ] |
| 582 sources += [ | 582 sources += [ |
| 583 "audio_processing/audio_processing_impl_locking_unittest.cc", | 583 "audio_processing/audio_processing_impl_locking_unittest.cc", |
| 584 "audio_processing/audio_processing_impl_unittest.cc", | 584 "audio_processing/audio_processing_impl_unittest.cc", |
| 585 "audio_processing/audio_processing_unittest.cc", | 585 "audio_processing/audio_processing_unittest.cc", |
| 586 "audio_processing/echo_cancellation_bit_exact_unittest.cc", | 586 "audio_processing/echo_cancellation_bit_exact_unittest.cc", |
| 587 "audio_processing/echo_control_mobile_unittest.cc", | 587 "audio_processing/echo_control_mobile_unittest.cc", |
| 588 "audio_processing/gain_control_unittest.cc", | 588 "audio_processing/gain_control_unittest.cc", |
| 589 "audio_processing/high_pass_filter_unittest.cc", | |
| 590 "audio_processing/level_controller/level_controller_unittest.cc", | 589 "audio_processing/level_controller/level_controller_unittest.cc", |
| 591 "audio_processing/level_estimator_unittest.cc", | 590 "audio_processing/level_estimator_unittest.cc", |
| 591 "audio_processing/low_cut_filter_unittest.cc", | |
|
kjellander_webrtc
2016/10/28 12:40:29
I can't find this file, where is it?
| |
| 592 "audio_processing/noise_suppression_unittest.cc", | 592 "audio_processing/noise_suppression_unittest.cc", |
| 593 "audio_processing/test/bitexactness_tools.cc", | 593 "audio_processing/test/bitexactness_tools.cc", |
| 594 "audio_processing/test/bitexactness_tools.h", | 594 "audio_processing/test/bitexactness_tools.h", |
| 595 "audio_processing/test/debug_dump_replayer.cc", | 595 "audio_processing/test/debug_dump_replayer.cc", |
| 596 "audio_processing/test/debug_dump_replayer.h", | 596 "audio_processing/test/debug_dump_replayer.h", |
| 597 "audio_processing/test/debug_dump_test.cc", | 597 "audio_processing/test/debug_dump_test.cc", |
| 598 "audio_processing/test/test_utils.h", | 598 "audio_processing/test/test_utils.h", |
| 599 "audio_processing/voice_detection_unittest.cc", | 599 "audio_processing/voice_detection_unittest.cc", |
| 600 ] | 600 ] |
| 601 } | 601 } |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 735 "../test:test_common", | 735 "../test:test_common", |
| 736 "../test:test_support_main", | 736 "../test:test_support_main", |
| 737 "remote_bitrate_estimator:bwe_simulator_lib", | 737 "remote_bitrate_estimator:bwe_simulator_lib", |
| 738 "video_capture", | 738 "video_capture", |
| 739 "//testing/gmock", | 739 "//testing/gmock", |
| 740 "//testing/gtest", | 740 "//testing/gtest", |
| 741 "//third_party/gflags", | 741 "//third_party/gflags", |
| 742 ] | 742 ] |
| 743 } | 743 } |
| 744 } | 744 } |
| OLD | NEW |