Prepare for splitting the api/video:video_frames build rule.

This change is part of a change to break the dependency between "api:rtp_headers" and "api/video:video_frame". It does so by first creating an empty "api/video:video_rtp_headers" build rule so that downstream projects can be fixed before moving the source files.

Bug: webrtc:10668
Change-Id: I81aa6edfef3639b457a40aa93de048e62cbfd8ef
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/140291
Commit-Queue: Chen Xing <chxg@google.com>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28209}
This commit is contained in:
Chen Xing
2019-06-10 12:59:38 +02:00
committed by Commit Bot
parent f504dd305d
commit 5d24b16c77
23 changed files with 117 additions and 2 deletions

View File

@ -47,6 +47,7 @@ rtc_source_set("video_codecs_api") {
"../video:video_bitrate_allocation",
"../video:video_codec_constants",
"../video:video_frame",
"../video:video_rtp_headers",
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/container:inlined_vector",
"//third_party/abseil-cpp/absl/strings",
@ -148,6 +149,7 @@ rtc_static_library("rtc_software_fallback_wrappers") {
"../video:encoded_image",
"../video:video_bitrate_allocation",
"../video:video_frame",
"../video:video_rtp_headers",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/types:optional",
]

View File

@ -35,6 +35,7 @@ if (rtc_include_tests) {
"../../video:video_bitrate_allocation",
"../../video:video_frame",
"../../video:video_frame_i420",
"../../video:video_rtp_headers",
"//testing/gtest",
"//third_party/abseil-cpp/absl/memory",
]