Bug: webrtc:10138 Change-Id: Ia4ce55ca5ff92237c8d58811df8fd96cd650a5b0 Reviewed-on: https://webrtc-review.googlesource.com/c/116685 Reviewed-by: Peter Slatala <psla@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26241}
55 lines
1.6 KiB
Plaintext
55 lines
1.6 KiB
Plaintext
# Copyright (c) 2018 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_source_set("video_quality_analyzer_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"video_quality_analyzer_interface.h",
|
|
]
|
|
|
|
deps = [
|
|
"../../../../api/video:encoded_image",
|
|
"../../../../api/video:video_frame",
|
|
"../../../../api/video_codecs:video_codecs_api",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("audio_quality_analyzer_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"audio_quality_analyzer_interface.h",
|
|
]
|
|
|
|
deps = []
|
|
}
|
|
|
|
rtc_source_set("peer_connection_quality_test_fixture_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"peerconnection_quality_test_fixture.h",
|
|
]
|
|
|
|
deps = [
|
|
":audio_quality_analyzer_api",
|
|
":video_quality_analyzer_api",
|
|
"../../../../api:callfactory_api",
|
|
"../../../../api:fec_controller_api",
|
|
"../../../../api:libjingle_peerconnection_api",
|
|
"../../../../api:simulated_network_api",
|
|
"../../../../api/transport:network_control",
|
|
"../../../../api/units:time_delta",
|
|
"../../../../api/video_codecs:video_codecs_api",
|
|
"../../../../logging:rtc_event_log_api",
|
|
"../../../../rtc_base:rtc_base",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|