Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(127)

Unified Diff: webrtc/api/BUILD.gn

Issue 2517173004: Move VideoFrame and related declarations to webrtc/api/video. (Closed)
Patch Set: Address include and comment nits. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/api/BUILD.gn
diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
index 01aacb745928c2f1ed09e47a6e4dd577084b31ff..9b2325e875262f502f995830727a79b101a96262 100644
--- a/webrtc/api/BUILD.gn
+++ b/webrtc/api/BUILD.gn
@@ -341,6 +341,19 @@ rtc_source_set("audio_mixer_api") {
]
}
+rtc_source_set("video_frame_api") {
+ sources = [
+ "video/rotation.h",
pthatcher1 2016/11/30 00:48:28 We have video/video_x.h for everything else. Woul
nisse-webrtc 2016/11/30 11:26:03 I'm renaming it video/video_rotation.h, for consis
+ "video/video_frame.cc",
+ "video/video_frame.h",
+ "video/video_frame_buffer.h",
+ ]
+
+ deps = [
+ "../base:rtc_base_approved",
+ ]
+}
+
if (rtc_include_tests) {
config("peerconnection_unittests_config") {
# The warnings below are enabled by default. Since GN orders compiler flags

Powered by Google App Engine
This is Rietveld 408576698