This reverts commit 76793c300fdd87fa8fd8be3dd2e5faf8c1916e96. Reason for revert: Can't cleanly revert the old one. A forward fix will be provided. Original change's description: > Revert "[DVQA] Create separate BUILD.gn file for video analyzer" > > This reverts commit 116c0a53d4a35c6dee857eb4cc2b6ae233a0427c. > > Reason for revert: Breaks bot: https://ci.chromium.org/ui/p/chromium/builders/try/linux_chromium_compile_dbg_ng/1415352/overview > > > Original change's description: > > [DVQA] Create separate BUILD.gn file for video analyzer > > > > Bug: None > > Change-Id: I37dd2262bf3f52b2f5abe7934b9c41eaa27ffd17 > > No-try: True > > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/283141 > > Commit-Queue: Artem Titov <titovartem@webrtc.org> > > Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> > > Cr-Commit-Position: refs/heads/main@{#38662} > > Bug: None > Change-Id: Ieeb8c569560cb9d60d0c4d3c1268fa57f56b8157 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/284000 > Auto-Submit: Ilya Nikolaevskiy <ilnik@webrtc.org> > Bot-Commit: rubber-stamper@appspot.gserviceaccount.com <rubber-stamper@appspot.gserviceaccount.com> > Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> > Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> > Cr-Commit-Position: refs/heads/main@{#38672} Bug: None Change-Id: I74506eaa6a1060bf87e651881c86b4f576f447ec Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/284020 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Bot-Commit: rubber-stamper@appspot.gserviceaccount.com <rubber-stamper@appspot.gserviceaccount.com> Auto-Submit: Ilya Nikolaevskiy <ilnik@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/main@{#38676}
109 lines
3.3 KiB
Plaintext
109 lines
3.3 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_source_set("media_configuration") {
|
|
visibility = [ "*" ]
|
|
testonly = true
|
|
sources = [
|
|
"media_configuration.cc",
|
|
"media_configuration.h",
|
|
]
|
|
|
|
deps = [
|
|
"../..:array_view",
|
|
"../..:audio_options_api",
|
|
"../..:audio_quality_analyzer_api",
|
|
"../..:callfactory_api",
|
|
"../..:fec_controller_api",
|
|
"../..:frame_generator_api",
|
|
"../..:function_view",
|
|
"../..:libjingle_peerconnection_api",
|
|
"../..:media_stream_interface",
|
|
"../..:packet_socket_factory",
|
|
"../..:peer_network_dependencies",
|
|
"../..:rtp_parameters",
|
|
"../..:simulated_network_api",
|
|
"../..:stats_observer_interface",
|
|
"../..:track_id_stream_info_map",
|
|
"../..:video_quality_analyzer_api",
|
|
"../../../modules/audio_processing:api",
|
|
"../../../rtc_base:checks",
|
|
"../../../rtc_base:rtc_base",
|
|
"../../../rtc_base:stringutils",
|
|
"../../../rtc_base:threading",
|
|
"../../../test:fileutils",
|
|
"../../../test:video_test_support",
|
|
"../../../test/pc/e2e/analyzer/video:video_dumping",
|
|
"../../audio:audio_mixer_api",
|
|
"../../rtc_event_log",
|
|
"../../task_queue",
|
|
"../../transport:network_control",
|
|
"../../units:time_delta",
|
|
"../../video_codecs:video_codecs_api",
|
|
"../video:video_frame_writer",
|
|
]
|
|
absl_deps = [
|
|
"//third_party/abseil-cpp/absl/memory",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
"//third_party/abseil-cpp/absl/types:optional",
|
|
]
|
|
}
|
|
|
|
rtc_library("media_quality_test_params") {
|
|
visibility = [ "*" ]
|
|
testonly = true
|
|
sources = [ "media_quality_test_params.h" ]
|
|
|
|
deps = [
|
|
":media_configuration",
|
|
"../../../api:callfactory_api",
|
|
"../../../api:fec_controller_api",
|
|
"../../../api:field_trials_view",
|
|
"../../../api:libjingle_peerconnection_api",
|
|
"../../../api:packet_socket_factory",
|
|
"../../../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_configuration",
|
|
":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_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",
|
|
"../../../rtc_base",
|
|
"../../../rtc_base:threading",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/strings" ]
|
|
}
|