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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 rtc_source_set("audio_network_adaptor_unittests") { | 251 rtc_source_set("audio_network_adaptor_unittests") { |
252 # Put sources for unittests of audio network adaptor in a separate | 252 # Put sources for unittests of audio network adaptor in a separate |
253 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. | 253 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. |
254 testonly = true | 254 testonly = true |
255 sources = [ | 255 sources = [ |
256 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", | 256 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", |
257 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", | 257 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", |
258 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", | 258 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", |
259 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", | 259 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", |
260 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", | 260 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", |
| 261 "audio_coding/audio_network_adaptor/event_log_writer_unittest.cc", |
261 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", | 262 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", |
262 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", | 263 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", |
263 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 264 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
264 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 265 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
265 ] | 266 ] |
266 deps = [ | 267 deps = [ |
267 "audio_coding:audio_network_adaptor", | 268 "audio_coding:audio_network_adaptor", |
268 "//testing/gmock", | 269 "//testing/gmock", |
269 "//testing/gtest", | 270 "//testing/gtest", |
270 ] | 271 ] |
(...skipping 484 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 |