| 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", | |
| 262 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", | 261 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", |
| 263 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", | 262 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", |
| 264 "audio_coding/audio_network_adaptor/mock/mock_controller.h", | 263 "audio_coding/audio_network_adaptor/mock/mock_controller.h", |
| 265 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", | 264 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", |
| 266 ] | 265 ] |
| 267 deps = [ | 266 deps = [ |
| 268 "audio_coding:audio_network_adaptor", | 267 "audio_coding:audio_network_adaptor", |
| 269 "//testing/gmock", | 268 "//testing/gmock", |
| 270 "//testing/gtest", | 269 "//testing/gtest", |
| 271 ] | 270 ] |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 "../test:test_common", | 755 "../test:test_common", |
| 757 "../test:test_main", | 756 "../test:test_main", |
| 758 "remote_bitrate_estimator:bwe_simulator_lib", | 757 "remote_bitrate_estimator:bwe_simulator_lib", |
| 759 "video_capture", | 758 "video_capture", |
| 760 "//testing/gmock", | 759 "//testing/gmock", |
| 761 "//testing/gtest", | 760 "//testing/gtest", |
| 762 "//third_party/gflags", | 761 "//third_party/gflags", |
| 763 ] | 762 ] |
| 764 } | 763 } |
| 765 } | 764 } |
| OLD | NEW |