1# Copyright (c) 2019 The WebRTC project authors. All Rights Reserved. 2# 3# Use of this source code is governed by a BSD-style license 4# that can be found in the LICENSE file in the root of the source 5# tree. An additional intellectual property rights grant can be found 6# in the file PATENTS. All contributing project authors may 7# be found in the AUTHORS file in the root of the source tree. 8 9import("../../../webrtc.gni") 10 11rtc_source_set("rtp_source") { 12 visibility = [ "*" ] 13 sources = [ "rtp_source.h" ] 14 deps = [ 15 "../../../api:rtp_headers", 16 "../../../api/units:time_delta", 17 "../../../rtc_base:checks", 18 ] 19 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] 20} 21 22rtc_source_set("dependency_descriptor") { 23 visibility = [ "*" ] 24 sources = [ 25 "dependency_descriptor.cc", 26 "dependency_descriptor.h", 27 ] 28 deps = [ 29 "../../../rtc_base:checks", 30 "../../video:render_resolution", 31 ] 32 absl_deps = [ 33 "//third_party/abseil-cpp/absl/container:inlined_vector", 34 "//third_party/abseil-cpp/absl/strings", 35 "//third_party/abseil-cpp/absl/types:optional", 36 ] 37} 38