# Copyright (c) 2023 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") visibility = [ ":*", "../:video_coding_legacy", "../:video_coding_unittests", ] rtc_library("deprecated_jitter_buffer_common") { sources = [ "jitter_buffer_common.h" ] } rtc_library("deprecated_packet") { sources = [ "packet.cc", "packet.h", ] deps = [ "../../../api:rtp_headers", "../../../api:rtp_packet_info", "../../../api/units:timestamp", "../../../api/video:video_frame_type", "../../../modules/rtp_rtcp:rtp_rtcp_format", "../../../modules/rtp_rtcp:rtp_video_header", ] absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] } rtc_library("deprecated_session_info") { deps = [ ":deprecated_jitter_buffer_common", ":deprecated_packet", "../../../modules:module_api", "../../../modules:module_api_public", "../../../modules/video_coding:codec_globals_headers", "../../../rtc_base:logging", ] sources = [ "session_info.cc", "session_info.h", ] absl_deps = [ "//third_party/abseil-cpp/absl/types:variant" ] } rtc_library("deprecated_unittests") { testonly = true sources = [ "session_info_unittest.cc" ] visibility += [ "../../../modules/*" ] deps = [ ":deprecated_packet", ":deprecated_session_info", "../../../test:test_support", ] }