mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Repalce all occurrences of foo:foo in deps with just foo in BUILD.gn files. Done with Sublime regex replace. Find: \b([-a-zA-Z0-9_]+):+\1\b In: *.gn Replace with: \1 Bug: None Change-Id: I40aba1b14face687a595b852ffe443cb20197611 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/127899 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27225}
90 lines
2.4 KiB
Text
90 lines
2.4 KiB
Text
# 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 = [
|
|
":stats_observer_interface",
|
|
"../../../../api/video:encoded_image",
|
|
"../../../../api/video:video_frame",
|
|
"../../../../api/video_codecs:video_codecs_api",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("audio_quality_analyzer_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"audio_quality_analyzer_interface.h",
|
|
]
|
|
|
|
deps = [
|
|
":stats_observer_interface",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("stats_observer_interface") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"stats_observer_interface.h",
|
|
]
|
|
|
|
deps = [
|
|
"../../../../api:libjingle_peerconnection_api",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
]
|
|
}
|
|
|
|
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",
|
|
"//third_party/abseil-cpp/absl/memory",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
if (rtc_include_tests) {
|
|
rtc_source_set("create_peerconnection_quality_test_fixture") {
|
|
visibility = [ "*" ]
|
|
testonly = true
|
|
sources = [
|
|
"create_peerconnection_quality_test_fixture.cc",
|
|
"create_peerconnection_quality_test_fixture.h",
|
|
]
|
|
|
|
deps = [
|
|
":audio_quality_analyzer_api",
|
|
":peer_connection_quality_test_fixture_api",
|
|
":video_quality_analyzer_api",
|
|
"../:peerconnection_quality_test",
|
|
"//third_party/abseil-cpp/absl/memory",
|
|
]
|
|
}
|
|
}
|