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 16 matching lines...) Expand all Loading... |
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 |
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. 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_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 "../rtc_base:rtc_base_approved", |
47 ] | 47 ] |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 "bitrate_estimator_tests.cc", | 137 "bitrate_estimator_tests.cc", |
138 "call_unittest.cc", | 138 "call_unittest.cc", |
139 "flexfec_receive_stream_unittest.cc", | 139 "flexfec_receive_stream_unittest.cc", |
140 "rtcp_demuxer_unittest.cc", | 140 "rtcp_demuxer_unittest.cc", |
141 "rtp_demuxer_unittest.cc", | 141 "rtp_demuxer_unittest.cc", |
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 ":mock_rtp_interfaces", |
147 ":rtp_interfaces", | 148 ":rtp_interfaces", |
148 ":rtp_receiver", | 149 ":rtp_receiver", |
149 ":rtp_sender", | 150 ":rtp_sender", |
150 "..:webrtc_common", | 151 "..:webrtc_common", |
151 "../api:mock_audio_mixer", | 152 "../api:mock_audio_mixer", |
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", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 "../test:video_test_common", | 207 "../test:video_test_common", |
207 "../video", | 208 "../video", |
208 "../voice_engine", | 209 "../voice_engine", |
209 "//testing/gtest", | 210 "//testing/gtest", |
210 ] | 211 ] |
211 if (!build_with_chromium && is_clang) { | 212 if (!build_with_chromium && is_clang) { |
212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 213 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 214 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
214 } | 215 } |
215 } | 216 } |
| 217 |
| 218 # TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|. |
| 219 rtc_source_set("mock_rtp_interfaces") { |
| 220 testonly = true |
| 221 |
| 222 sources = [ |
| 223 "test/mock_rtp_packet_sink_interface.h", |
| 224 ] |
| 225 deps = [ |
| 226 ":rtp_interfaces", |
| 227 "//testing/gmock", |
| 228 ] |
| 229 } |
216 } | 230 } |
OLD | NEW |