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

Unified Diff: webrtc/call/BUILD.gn

Issue 3004723002: Move RtpExtension to api/ directory and config.h/.cc to call/. (Closed)
Patch Set: Fix nit. Created 3 years, 3 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
« no previous file with comments | « webrtc/api/rtpparameters_unittest.cc ('k') | webrtc/call/audio_receive_stream.h » ('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 d86df1e379a9686c2b8243c84dc49f69cb4e6390..263f16dd354da795e71f3a24bdd0eea4cd24864d 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -38,6 +38,8 @@ rtc_source_set("call_interfaces") {
rtc_source_set("rtp_interfaces") {
sources = [
"rtcp_packet_sink_interface.h",
+ "rtp_config.cc",
+ "rtp_config.h",
"rtp_packet_sink_interface.h",
"rtp_stream_receiver_controller_interface.h",
"rtp_transport_controller_send_interface.h",
@@ -100,6 +102,7 @@ rtc_static_library("call") {
public_deps = [
":call_interfaces",
"../api:call_api",
+ "../api:libjingle_peerconnection_api",
]
deps = [
@@ -107,6 +110,7 @@ rtc_static_library("call") {
":rtp_interfaces",
":rtp_receiver",
":rtp_sender",
+ ":video_stream_api",
"..:webrtc_common",
"../api:transport_api",
"../audio",
@@ -127,13 +131,17 @@ rtc_static_library("call") {
rtc_source_set("video_stream_api") {
sources = [
+ "video_config.cc",
+ "video_config.h",
"video_receive_stream.cc",
"video_receive_stream.h",
"video_send_stream.cc",
"video_send_stream.h",
]
deps = [
+ ":rtp_interfaces",
"../:webrtc_common",
+ "../api:libjingle_peerconnection_api",
"../api:transport_api",
"../common_video:common_video",
"../rtc_base:rtc_base_approved",
@@ -209,6 +217,7 @@ if (rtc_include_tests) {
]
deps = [
":call_interfaces",
+ ":video_stream_api",
"..:webrtc_common",
"../api/audio_codecs:builtin_audio_encoder_factory",
"../logging:rtc_event_log_api",
« no previous file with comments | « webrtc/api/rtpparameters_unittest.cc ('k') | webrtc/call/audio_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698