| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "audio_coding/neteq/random_vector_unittest.cc", | 329 "audio_coding/neteq/random_vector_unittest.cc", |
| 330 "audio_coding/neteq/red_payload_splitter_unittest.cc", | 330 "audio_coding/neteq/red_payload_splitter_unittest.cc", |
| 331 "audio_coding/neteq/sync_buffer_unittest.cc", | 331 "audio_coding/neteq/sync_buffer_unittest.cc", |
| 332 "audio_coding/neteq/tick_timer_unittest.cc", | 332 "audio_coding/neteq/tick_timer_unittest.cc", |
| 333 "audio_coding/neteq/time_stretch_unittest.cc", | 333 "audio_coding/neteq/time_stretch_unittest.cc", |
| 334 "audio_coding/neteq/timestamp_scaler_unittest.cc", | 334 "audio_coding/neteq/timestamp_scaler_unittest.cc", |
| 335 "audio_coding/neteq/tools/input_audio_file_unittest.cc", | 335 "audio_coding/neteq/tools/input_audio_file_unittest.cc", |
| 336 "audio_coding/neteq/tools/packet_unittest.cc", | 336 "audio_coding/neteq/tools/packet_unittest.cc", |
| 337 "audio_conference_mixer/test/audio_conference_mixer_unittest.cc", | 337 "audio_conference_mixer/test/audio_conference_mixer_unittest.cc", |
| 338 "audio_device/fine_audio_buffer_unittest.cc", | 338 "audio_device/fine_audio_buffer_unittest.cc", |
| 339 "audio_mixer/audio_frame_manipulator_unittest.cc", |
| 339 "audio_mixer/test/audio_mixer_unittest.cc", | 340 "audio_mixer/test/audio_mixer_unittest.cc", |
| 340 "audio_processing/aec/echo_cancellation_unittest.cc", | 341 "audio_processing/aec/echo_cancellation_unittest.cc", |
| 341 "audio_processing/aec/system_delay_unittest.cc", | 342 "audio_processing/aec/system_delay_unittest.cc", |
| 342 "audio_processing/agc/agc_manager_direct_unittest.cc", | 343 "audio_processing/agc/agc_manager_direct_unittest.cc", |
| 343 "audio_processing/agc/loudness_histogram_unittest.cc", | 344 "audio_processing/agc/loudness_histogram_unittest.cc", |
| 344 "audio_processing/agc/mock_agc.h", | 345 "audio_processing/agc/mock_agc.h", |
| 345 "audio_processing/audio_buffer_unittest.cc", | 346 "audio_processing/audio_buffer_unittest.cc", |
| 346 "audio_processing/beamformer/array_util_unittest.cc", | 347 "audio_processing/beamformer/array_util_unittest.cc", |
| 347 "audio_processing/beamformer/complex_matrix_unittest.cc", | 348 "audio_processing/beamformer/complex_matrix_unittest.cc", |
| 348 "audio_processing/beamformer/covariance_matrix_generator_unittest.cc", | 349 "audio_processing/beamformer/covariance_matrix_generator_unittest.cc", |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 "../test:test_common", | 732 "../test:test_common", |
| 732 "../test:test_support_main", | 733 "../test:test_support_main", |
| 733 "remote_bitrate_estimator:bwe_simulator_lib", | 734 "remote_bitrate_estimator:bwe_simulator_lib", |
| 734 "video_capture", | 735 "video_capture", |
| 735 "//testing/gmock", | 736 "//testing/gmock", |
| 736 "//testing/gtest", | 737 "//testing/gtest", |
| 737 "//third_party/gflags", | 738 "//third_party/gflags", |
| 738 ] | 739 ] |
| 739 } | 740 } |
| 740 } | 741 } |
| OLD | NEW |