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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 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 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 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../webrtc.gni") 9 import("../webrtc.gni")
10 10
(...skipping 20 matching lines...) Expand all
31 "../rtc_base:rtc_base", 31 "../rtc_base:rtc_base",
32 "../rtc_base:rtc_base_approved", 32 "../rtc_base:rtc_base_approved",
33 ] 33 ]
34 } 34 }
35 35
36 # TODO(nisse): These RTP targets should be moved elsewhere 36 # TODO(nisse): These RTP targets should be moved elsewhere
37 # when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|. 37 # when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|.
38 rtc_source_set("rtp_interfaces") { 38 rtc_source_set("rtp_interfaces") {
39 sources = [ 39 sources = [
40 "rtcp_packet_sink_interface.h", 40 "rtcp_packet_sink_interface.h",
41 "rtp_config.cc",
42 "rtp_config.h",
41 "rtp_packet_sink_interface.h", 43 "rtp_packet_sink_interface.h",
42 "rtp_stream_receiver_controller_interface.h", 44 "rtp_stream_receiver_controller_interface.h",
43 "rtp_transport_controller_send_interface.h", 45 "rtp_transport_controller_send_interface.h",
44 ] 46 ]
45 deps = [ 47 deps = [
46 "../rtc_base:rtc_base_approved", 48 "../rtc_base:rtc_base_approved",
47 ] 49 ]
48 } 50 }
49 51
50 rtc_source_set("rtp_receiver") { 52 rtc_source_set("rtp_receiver") {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 ] 95 ]
94 96
95 if (!build_with_chromium && is_clang) { 97 if (!build_with_chromium && is_clang) {
96 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 98 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
97 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 99 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
98 } 100 }
99 101
100 public_deps = [ 102 public_deps = [
101 ":call_interfaces", 103 ":call_interfaces",
102 "../api:call_api", 104 "../api:call_api",
105 "../api:libjingle_peerconnection_api",
103 ] 106 ]
104 107
105 deps = [ 108 deps = [
106 ":call_interfaces", 109 ":call_interfaces",
107 ":rtp_interfaces", 110 ":rtp_interfaces",
108 ":rtp_receiver", 111 ":rtp_receiver",
109 ":rtp_sender", 112 ":rtp_sender",
113 ":video_stream_api",
110 "..:webrtc_common", 114 "..:webrtc_common",
111 "../api:transport_api", 115 "../api:transport_api",
112 "../audio", 116 "../audio",
113 "../logging:rtc_event_log_api", 117 "../logging:rtc_event_log_api",
114 "../logging:rtc_event_log_impl", 118 "../logging:rtc_event_log_impl",
115 "../modules/bitrate_controller", 119 "../modules/bitrate_controller",
116 "../modules/congestion_controller", 120 "../modules/congestion_controller",
117 "../modules/pacing", 121 "../modules/pacing",
118 "../modules/rtp_rtcp", 122 "../modules/rtp_rtcp",
119 "../modules/utility", 123 "../modules/utility",
120 "../rtc_base:rtc_base_approved", 124 "../rtc_base:rtc_base_approved",
121 "../rtc_base:rtc_task_queue", 125 "../rtc_base:rtc_task_queue",
122 "../rtc_base:sequenced_task_checker", 126 "../rtc_base:sequenced_task_checker",
123 "../system_wrappers", 127 "../system_wrappers",
124 "../video", 128 "../video",
125 ] 129 ]
126 } 130 }
127 131
128 rtc_source_set("video_stream_api") { 132 rtc_source_set("video_stream_api") {
129 sources = [ 133 sources = [
134 "video_config.cc",
135 "video_config.h",
130 "video_receive_stream.cc", 136 "video_receive_stream.cc",
131 "video_receive_stream.h", 137 "video_receive_stream.h",
132 "video_send_stream.cc", 138 "video_send_stream.cc",
133 "video_send_stream.h", 139 "video_send_stream.h",
134 ] 140 ]
135 deps = [ 141 deps = [
142 ":rtp_interfaces",
136 "../:webrtc_common", 143 "../:webrtc_common",
144 "../api:libjingle_peerconnection_api",
137 "../api:transport_api", 145 "../api:transport_api",
138 "../common_video:common_video", 146 "../common_video:common_video",
139 "../rtc_base:rtc_base_approved", 147 "../rtc_base:rtc_base_approved",
140 ] 148 ]
141 } 149 }
142 150
143 if (rtc_include_tests) { 151 if (rtc_include_tests) {
144 rtc_source_set("call_tests") { 152 rtc_source_set("call_tests") {
145 testonly = true 153 testonly = true
146 154
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 if (!is_android && !is_ios) { 210 if (!is_android && !is_ios) {
203 visibility = [ "..:webrtc_perf_tests" ] 211 visibility = [ "..:webrtc_perf_tests" ]
204 } 212 }
205 sources = [ 213 sources = [
206 "call_perf_tests.cc", 214 "call_perf_tests.cc",
207 "rampup_tests.cc", 215 "rampup_tests.cc",
208 "rampup_tests.h", 216 "rampup_tests.h",
209 ] 217 ]
210 deps = [ 218 deps = [
211 ":call_interfaces", 219 ":call_interfaces",
220 ":video_stream_api",
212 "..:webrtc_common", 221 "..:webrtc_common",
213 "../api/audio_codecs:builtin_audio_encoder_factory", 222 "../api/audio_codecs:builtin_audio_encoder_factory",
214 "../logging:rtc_event_log_api", 223 "../logging:rtc_event_log_api",
215 "../modules/audio_coding", 224 "../modules/audio_coding",
216 "../modules/audio_mixer:audio_mixer_impl", 225 "../modules/audio_mixer:audio_mixer_impl",
217 "../modules/rtp_rtcp", 226 "../modules/rtp_rtcp",
218 "../rtc_base:rtc_base_approved", 227 "../rtc_base:rtc_base_approved",
219 "../system_wrappers", 228 "../system_wrappers",
220 "../system_wrappers:metrics_default", 229 "../system_wrappers:metrics_default",
221 "../test:direct_transport", 230 "../test:direct_transport",
(...skipping 19 matching lines...) Expand all
241 sources = [ 250 sources = [
242 "test/mock_rtp_packet_sink_interface.h", 251 "test/mock_rtp_packet_sink_interface.h",
243 ] 252 ]
244 deps = [ 253 deps = [
245 ":rtp_interfaces", 254 ":rtp_interfaces",
246 "../test:test_support", 255 "../test:test_support",
247 "//testing/gmock", 256 "//testing/gmock",
248 ] 257 ]
249 } 258 }
250 } 259 }
OLDNEW
« 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