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

Side by Side 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 unified diff | Download patch
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
11 rtc_source_set("call_interfaces") { 11 rtc_source_set("call_interfaces") {
12 sources = [ 12 sources = [
13 "audio_receive_stream.h", 13 "audio_receive_stream.h",
14 "audio_send_stream.cc", 14 "audio_send_stream.cc",
15 "audio_send_stream.h", 15 "audio_send_stream.h",
16 "audio_state.h", 16 "audio_state.h",
17 "call.h", 17 "call.h",
18 "callfactoryinterface.h", 18 "callfactoryinterface.h",
19 "flexfec_receive_stream.h", 19 "flexfec_receive_stream.h",
20 "syncable.cc", 20 "syncable.cc",
21 "syncable.h", 21 "syncable.h",
22 ] 22 ]
23 deps = [ 23 deps = [
24 ":rtp_interfaces", 24 ":rtp_interfaces",
25 "..:video_stream_api", 25 ":video_stream_api",
26 "..:webrtc_common", 26 "..:webrtc_common",
27 "../api:audio_mixer_api", 27 "../api:audio_mixer_api",
28 "../api:libjingle_peerconnection_api", 28 "../api:libjingle_peerconnection_api",
29 "../api:transport_api", 29 "../api:transport_api",
30 "../api/audio_codecs:audio_codecs_api", 30 "../api/audio_codecs:audio_codecs_api",
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
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "../modules/pacing", 117 "../modules/pacing",
118 "../modules/rtp_rtcp", 118 "../modules/rtp_rtcp",
119 "../modules/utility", 119 "../modules/utility",
120 "../rtc_base:rtc_task_queue", 120 "../rtc_base:rtc_task_queue",
121 "../rtc_base:sequenced_task_checker", 121 "../rtc_base:sequenced_task_checker",
122 "../system_wrappers", 122 "../system_wrappers",
123 "../video", 123 "../video",
124 ] 124 ]
125 } 125 }
126 126
127 rtc_source_set("video_stream_api") {
128 sources = [
129 "video_receive_stream.cc",
130 "video_receive_stream.h",
131 "video_send_stream.cc",
132 "video_send_stream.h",
133 ]
134 deps = [
135 "../:webrtc_common",
136 "../api:transport_api",
137 "../common_video:common_video",
138 "../rtc_base:rtc_base_approved",
139 ]
140 }
141
127 if (rtc_include_tests) { 142 if (rtc_include_tests) {
128 rtc_source_set("call_tests") { 143 rtc_source_set("call_tests") {
129 testonly = true 144 testonly = true
130 145
131 # Skip restricting visibility on mobile platforms since the tests on those 146 # Skip restricting visibility on mobile platforms since the tests on those
132 # gets additional generated targets which would require many lines here to 147 # gets additional generated targets which would require many lines here to
133 # cover (which would be confusing to read and hard to maintain). 148 # cover (which would be confusing to read and hard to maintain).
134 if (!is_android && !is_ios) { 149 if (!is_android && !is_ios) {
135 visibility = [ "..:video_engine_tests" ] 150 visibility = [ "..:video_engine_tests" ]
136 } 151 }
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 sources = [ 240 sources = [
226 "test/mock_rtp_packet_sink_interface.h", 241 "test/mock_rtp_packet_sink_interface.h",
227 ] 242 ]
228 deps = [ 243 deps = [
229 ":rtp_interfaces", 244 ":rtp_interfaces",
230 "../test:test_support", 245 "../test:test_support",
231 "//testing/gmock", 246 "//testing/gmock",
232 ] 247 ]
233 } 248 }
234 } 249 }
OLDNEW
« 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