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

Unified Diff: webrtc/call/BUILD.gn

Issue 3000253002: Move video send/receive stream headers to webrtc/call. (Closed)
Patch Set: Headers moved to 'webrtc/call' instead of 'webrtc/api'. Created 3 years, 4 months 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
« webrtc/BUILD.gn ('K') | « webrtc/DEPS ('k') | webrtc/call/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/BUILD.gn
diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
index afbc8228493ccac8da2c9ba6764c9c12760a8ef7..62bcff3385e9beca69b8306485e9958352b03ca8 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -22,7 +22,7 @@ rtc_source_set("call_interfaces") {
]
deps = [
":rtp_interfaces",
- "..:video_stream_api",
+ ":video_stream_api",
"..:webrtc_common",
"../api:audio_mixer_api",
"../api:libjingle_peerconnection_api",
@@ -124,6 +124,21 @@ rtc_static_library("call") {
]
}
+rtc_source_set("video_stream_api") {
+ sources = [
+ "video_receive_stream.cc",
+ "video_receive_stream.h",
+ "video_send_stream.cc",
+ "video_send_stream.h",
+ ]
+ deps = [
+ "../:webrtc_common",
+ "../api:transport_api",
+ "../common_video:common_video",
+ "../rtc_base:rtc_base_approved",
+ ]
+}
+
if (rtc_include_tests) {
rtc_source_set("call_tests") {
testonly = true
« webrtc/BUILD.gn ('K') | « webrtc/DEPS ('k') | webrtc/call/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698