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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 rtc_source_set("audio_network_adaptor_unittests") { | 253 rtc_source_set("audio_network_adaptor_unittests") { |
254 # Put sources for unittests of audio network adaptor in a separate | 254 # Put sources for unittests of audio network adaptor in a separate |
255 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. | 255 # rtc_source_set to solve name collision on bitrate_controller_unittest.cc. |
256 testonly = true | 256 testonly = true |
257 sources = [ | 257 sources = [ |
258 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", | 258 "audio_coding/audio_network_adaptor/audio_network_adaptor_impl_unittest.cc
", |
259 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", | 259 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", |
260 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", | 260 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", |
261 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", | 261 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", |
262 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", | 262 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", |
| 263 "audio_coding/audio_network_adaptor/event_log_writer_unittest.cc", |
263 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", | 264 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", |
264 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", | 265 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", |
265 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 266 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
266 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 267 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
267 ] | 268 ] |
268 deps = [ | 269 deps = [ |
269 "audio_coding:audio_network_adaptor", | 270 "audio_coding:audio_network_adaptor", |
270 "//testing/gmock", | 271 "//testing/gmock", |
271 "//testing/gtest", | 272 "//testing/gtest", |
272 ] | 273 ] |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 "../test:test_common", | 754 "../test:test_common", |
754 "../test:test_main", | 755 "../test:test_main", |
755 "remote_bitrate_estimator:bwe_simulator_lib", | 756 "remote_bitrate_estimator:bwe_simulator_lib", |
756 "video_capture", | 757 "video_capture", |
757 "//testing/gmock", | 758 "//testing/gmock", |
758 "//testing/gtest", | 759 "//testing/gtest", |
759 "//third_party/gflags", | 760 "//third_party/gflags", |
760 ] | 761 ] |
761 } | 762 } |
762 } | 763 } |
OLD | NEW |