OLD | NEW |
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 10 matching lines...) Expand all Loading... |
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 "../base:rtc_base", |
32 "../rtc_base:rtc_base_approved", | 32 "../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. | 37 # when interfaces have stabilized. |
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_packet_sink_interface.h", | 41 "rtp_packet_sink_interface.h", |
42 "rtp_stream_receiver_controller_interface.h", | 42 "rtp_stream_receiver_controller_interface.h", |
43 "rtp_transport_controller_send_interface.h", | 43 "rtp_transport_controller_send_interface.h", |
44 ] | 44 ] |
45 deps = [ | 45 deps = [ |
46 "../rtc_base:rtc_base_approved", | 46 "../base:rtc_base_approved", |
47 ] | 47 ] |
48 } | 48 } |
49 | 49 |
50 rtc_source_set("rtp_receiver") { | 50 rtc_source_set("rtp_receiver") { |
51 sources = [ | 51 sources = [ |
52 "rsid_resolution_observer.h", | 52 "rsid_resolution_observer.h", |
53 "rtcp_demuxer.cc", | 53 "rtcp_demuxer.cc", |
54 "rtcp_demuxer.h", | 54 "rtcp_demuxer.h", |
55 "rtp_demuxer.cc", | 55 "rtp_demuxer.cc", |
56 "rtp_demuxer.h", | 56 "rtp_demuxer.h", |
57 "rtp_rtcp_demuxer_helper.cc", | 57 "rtp_rtcp_demuxer_helper.cc", |
58 "rtp_rtcp_demuxer_helper.h", | 58 "rtp_rtcp_demuxer_helper.h", |
59 "rtp_stream_receiver_controller.cc", | 59 "rtp_stream_receiver_controller.cc", |
60 "rtp_stream_receiver_controller.h", | 60 "rtp_stream_receiver_controller.h", |
61 "rtx_receive_stream.cc", | 61 "rtx_receive_stream.cc", |
62 "rtx_receive_stream.h", | 62 "rtx_receive_stream.h", |
63 ] | 63 ] |
64 deps = [ | 64 deps = [ |
65 ":rtp_interfaces", | 65 ":rtp_interfaces", |
66 "..:webrtc_common", | 66 "..:webrtc_common", |
| 67 "../base:rtc_base_approved", |
67 "../modules/rtp_rtcp", | 68 "../modules/rtp_rtcp", |
68 "../rtc_base:rtc_base_approved", | |
69 ] | 69 ] |
70 } | 70 } |
71 | 71 |
72 rtc_source_set("rtp_sender") { | 72 rtc_source_set("rtp_sender") { |
73 sources = [ | 73 sources = [ |
74 "rtp_transport_controller_send.cc", | 74 "rtp_transport_controller_send.cc", |
75 "rtp_transport_controller_send.h", | 75 "rtp_transport_controller_send.h", |
76 ] | 76 ] |
77 deps = [ | 77 deps = [ |
78 ":rtp_interfaces", | 78 ":rtp_interfaces", |
| 79 "../base:rtc_base_approved", |
79 "../modules/congestion_controller", | 80 "../modules/congestion_controller", |
80 "../rtc_base:rtc_base_approved", | |
81 ] | 81 ] |
82 } | 82 } |
83 | 83 |
84 rtc_static_library("call") { | 84 rtc_static_library("call") { |
85 sources = [ | 85 sources = [ |
86 "bitrate_allocator.cc", | 86 "bitrate_allocator.cc", |
87 "call.cc", | 87 "call.cc", |
88 "callfactory.cc", | 88 "callfactory.cc", |
89 "callfactory.h", | 89 "callfactory.h", |
90 "flexfec_receive_stream_impl.cc", | 90 "flexfec_receive_stream_impl.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
102 ] | 102 ] |
103 | 103 |
104 deps = [ | 104 deps = [ |
105 ":call_interfaces", | 105 ":call_interfaces", |
106 ":rtp_interfaces", | 106 ":rtp_interfaces", |
107 ":rtp_receiver", | 107 ":rtp_receiver", |
108 ":rtp_sender", | 108 ":rtp_sender", |
109 "..:webrtc_common", | 109 "..:webrtc_common", |
110 "../api:transport_api", | 110 "../api:transport_api", |
111 "../audio", | 111 "../audio", |
| 112 "../base:rtc_task_queue", |
112 "../logging:rtc_event_log_api", | 113 "../logging:rtc_event_log_api", |
113 "../logging:rtc_event_log_impl", | 114 "../logging:rtc_event_log_impl", |
114 "../modules/bitrate_controller", | 115 "../modules/bitrate_controller", |
115 "../modules/congestion_controller", | 116 "../modules/congestion_controller", |
116 "../modules/pacing", | 117 "../modules/pacing", |
117 "../modules/rtp_rtcp", | 118 "../modules/rtp_rtcp", |
118 "../modules/utility", | 119 "../modules/utility", |
119 "../rtc_base:rtc_task_queue", | |
120 "../system_wrappers", | 120 "../system_wrappers", |
121 "../video", | 121 "../video", |
122 ] | 122 ] |
123 } | 123 } |
124 | 124 |
125 if (rtc_include_tests) { | 125 if (rtc_include_tests) { |
126 rtc_source_set("call_tests") { | 126 rtc_source_set("call_tests") { |
127 testonly = true | 127 testonly = true |
128 | 128 |
129 # Skip restricting visibility on mobile platforms since the tests on those | 129 # Skip restricting visibility on mobile platforms since the tests on those |
(...skipping 12 matching lines...) Expand all Loading... |
142 "rtp_rtcp_demuxer_helper_unittest.cc", | 142 "rtp_rtcp_demuxer_helper_unittest.cc", |
143 "rtx_receive_stream_unittest.cc", | 143 "rtx_receive_stream_unittest.cc", |
144 ] | 144 ] |
145 deps = [ | 145 deps = [ |
146 ":call", | 146 ":call", |
147 ":rtp_interfaces", | 147 ":rtp_interfaces", |
148 ":rtp_receiver", | 148 ":rtp_receiver", |
149 ":rtp_sender", | 149 ":rtp_sender", |
150 "..:webrtc_common", | 150 "..:webrtc_common", |
151 "../api:mock_audio_mixer", | 151 "../api:mock_audio_mixer", |
| 152 "../base:rtc_base_approved", |
152 "../logging:rtc_event_log_api", | 153 "../logging:rtc_event_log_api", |
153 "../modules/audio_device:mock_audio_device", | 154 "../modules/audio_device:mock_audio_device", |
154 "../modules/audio_mixer", | 155 "../modules/audio_mixer", |
155 "../modules/bitrate_controller", | 156 "../modules/bitrate_controller", |
156 "../modules/congestion_controller:mock_congestion_controller", | 157 "../modules/congestion_controller:mock_congestion_controller", |
157 "../modules/pacing", | 158 "../modules/pacing", |
158 "../modules/rtp_rtcp", | 159 "../modules/rtp_rtcp", |
159 "../modules/rtp_rtcp:mock_rtp_rtcp", | 160 "../modules/rtp_rtcp:mock_rtp_rtcp", |
160 "../rtc_base:rtc_base_approved", | |
161 "../system_wrappers", | 161 "../system_wrappers", |
162 "../test:audio_codec_mocks", | 162 "../test:audio_codec_mocks", |
163 "../test:direct_transport", | 163 "../test:direct_transport", |
164 "../test:test_common", | 164 "../test:test_common", |
165 "../test:test_support", | 165 "../test:test_support", |
166 "../test:video_test_common", | 166 "../test:video_test_common", |
167 "//testing/gmock", | 167 "//testing/gmock", |
168 "//testing/gtest", | 168 "//testing/gtest", |
169 ] | 169 ] |
170 if (!build_with_chromium && is_clang) { | 170 if (!build_with_chromium && is_clang) { |
(...skipping 13 matching lines...) Expand all Loading... |
184 } | 184 } |
185 sources = [ | 185 sources = [ |
186 "call_perf_tests.cc", | 186 "call_perf_tests.cc", |
187 "rampup_tests.cc", | 187 "rampup_tests.cc", |
188 "rampup_tests.h", | 188 "rampup_tests.h", |
189 ] | 189 ] |
190 deps = [ | 190 deps = [ |
191 ":call_interfaces", | 191 ":call_interfaces", |
192 "..:webrtc_common", | 192 "..:webrtc_common", |
193 "../api/audio_codecs:builtin_audio_encoder_factory", | 193 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 194 "../base:rtc_base_approved", |
194 "../logging:rtc_event_log_api", | 195 "../logging:rtc_event_log_api", |
195 "../modules/audio_coding", | 196 "../modules/audio_coding", |
196 "../modules/audio_mixer:audio_mixer_impl", | 197 "../modules/audio_mixer:audio_mixer_impl", |
197 "../modules/rtp_rtcp", | 198 "../modules/rtp_rtcp", |
198 "../rtc_base:rtc_base_approved", | |
199 "../system_wrappers", | 199 "../system_wrappers", |
200 "../system_wrappers:metrics_default", | 200 "../system_wrappers:metrics_default", |
201 "../test:direct_transport", | 201 "../test:direct_transport", |
202 "../test:fake_audio_device", | 202 "../test:fake_audio_device", |
203 "../test:test_support", | 203 "../test:test_support", |
204 "../test:video_test_common", | 204 "../test:video_test_common", |
205 "../video", | 205 "../video", |
206 "../voice_engine", | 206 "../voice_engine", |
207 "//testing/gtest", | 207 "//testing/gtest", |
208 "//webrtc/test:field_trial", | 208 "//webrtc/test:field_trial", |
209 "//webrtc/test:test_common", | 209 "//webrtc/test:test_common", |
210 ] | 210 ] |
211 if (!build_with_chromium && is_clang) { | 211 if (!build_with_chromium && is_clang) { |
212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
214 } | 214 } |
215 } | 215 } |
216 } | 216 } |
OLD | NEW |