65 lines
2.2 KiB
Plaintext
65 lines
2.2 KiB
Plaintext
|
|
# Copyright (c) 2022 The WebRTC project authors. All Rights Reserved.
|
||
|
|
#
|
||
|
|
# Use of this source code is governed by a BSD-style license
|
||
|
|
# that can be found in the LICENSE file in the root of the source
|
||
|
|
# tree. An additional intellectual property rights grant can be found
|
||
|
|
# in the file PATENTS. All contributing project authors may
|
||
|
|
# be found in the AUTHORS file in the root of the source tree.
|
||
|
|
|
||
|
|
import("../../../webrtc.gni")
|
||
|
|
|
||
|
|
rtc_library("media_quality_test_params") {
|
||
|
|
visibility = [ "*" ]
|
||
|
|
testonly = true
|
||
|
|
sources = [ "media_quality_test_params.h" ]
|
||
|
|
|
||
|
|
deps = [
|
||
|
|
"../../../api:callfactory_api",
|
||
|
|
"../../../api:fec_controller_api",
|
||
|
|
"../../../api:field_trials_view",
|
||
|
|
"../../../api:libjingle_peerconnection_api",
|
||
|
|
"../../../api:packet_socket_factory",
|
||
|
|
"../../../api:peer_connection_quality_test_fixture_api",
|
||
|
|
"../../../api/audio:audio_mixer_api",
|
||
|
|
"../../../api/rtc_event_log",
|
||
|
|
"../../../api/task_queue",
|
||
|
|
"../../../api/transport:network_control",
|
||
|
|
"../../../api/video_codecs:video_codecs_api",
|
||
|
|
"../../../modules/audio_processing:api",
|
||
|
|
"../../../p2p:rtc_p2p",
|
||
|
|
"../../../rtc_base",
|
||
|
|
"../../../rtc_base:threading",
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
rtc_library("peer_configurer") {
|
||
|
|
visibility = [ "*" ]
|
||
|
|
testonly = true
|
||
|
|
sources = [
|
||
|
|
"peer_configurer.cc",
|
||
|
|
"peer_configurer.h",
|
||
|
|
]
|
||
|
|
deps = [
|
||
|
|
":media_quality_test_params",
|
||
|
|
"../../../api:callfactory_api",
|
||
|
|
"../../../api:create_peer_connection_quality_test_frame_generator",
|
||
|
|
"../../../api:fec_controller_api",
|
||
|
|
"../../../api:packet_socket_factory",
|
||
|
|
"../../../api:peer_connection_quality_test_fixture_api",
|
||
|
|
"../../../api:peer_network_dependencies",
|
||
|
|
"../../../api/audio:audio_mixer_api",
|
||
|
|
"../../../api/rtc_event_log",
|
||
|
|
"../../../api/task_queue",
|
||
|
|
"../../../api/transport:network_control",
|
||
|
|
"../../../api/video_codecs:video_codecs_api",
|
||
|
|
"../../../modules/audio_processing:api",
|
||
|
|
"../../../modules/video_coding/svc:scalability_mode_util",
|
||
|
|
"../../../modules/video_coding/svc:scalability_structures",
|
||
|
|
"../../../rtc_base",
|
||
|
|
"../../../rtc_base:macromagic",
|
||
|
|
"../../../rtc_base:threading",
|
||
|
|
"../../../test:fileutils",
|
||
|
|
]
|
||
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/strings" ]
|
||
|
|
}
|