BUILD.gn (1794B)
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 9 import("../../../webrtc.gni") 10 11 rtc_source_set("rtp_source") { 12 visibility = [ "*" ] 13 sources = [ "rtp_source.h" ] 14 deps = [ 15 "../../../api:rtp_headers", 16 "../../../api/units:time_delta", 17 "../../../api/units:timestamp", 18 "../../../rtc_base:checks", 19 "//third_party/abseil-cpp/absl/strings:str_format", 20 ] 21 } 22 23 rtc_library("dependency_descriptor") { 24 visibility = [ "*" ] 25 sources = [ 26 "dependency_descriptor.cc", 27 "dependency_descriptor.h", 28 ] 29 deps = [ 30 "../../../rtc_base:checks", 31 "../../video:render_resolution", 32 "//third_party/abseil-cpp/absl/container:inlined_vector", 33 "//third_party/abseil-cpp/absl/strings:string_view", 34 ] 35 } 36 37 rtc_library("corruption_detection_message") { 38 visibility = [ "*" ] 39 sources = [ 40 "corruption_detection_message.cc", 41 "corruption_detection_message.h", 42 ] 43 deps = [ 44 "../../:array_view", 45 "../../../rtc_base:checks", 46 "../../video/corruption_detection:frame_instrumentation_data", 47 "//third_party/abseil-cpp/absl/container:inlined_vector", 48 ] 49 } 50 51 if (rtc_include_tests && !build_with_chromium) { 52 rtc_library("corruption_detection_message_unittest") { 53 testonly = true 54 sources = [ "corruption_detection_message_unittest.cc" ] 55 deps = [ 56 ":corruption_detection_message", 57 "../../../test:test_support", 58 "../../video/corruption_detection:frame_instrumentation_data", 59 ] 60 } 61 }