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 15 matching lines...) Expand all Loading... | |
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 |
36 # TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|. | |
37 rtc_source_set("mock_rtp_interfaces") { | |
danilchap
2017/07/26 10:28:59
probably better to move inside if (rtc_include_tes
eladalon
2017/07/26 11:24:27
Done.
| |
38 sources = [ | |
danilchap
2017/07/26 10:28:59
add
testonly = true
eladalon
2017/07/26 11:24:27
Done.
| |
39 "test/mock_rtp_packet_sink_interface.h", | |
40 ] | |
danilchap
2017/07/26 10:28:59
add deps on rtp_interfaces and //testing/gmock
It
| |
41 } | |
42 | |
36 # TODO(nisse): These RTP targets should be moved elsewhere | 43 # TODO(nisse): These RTP targets should be moved elsewhere |
37 # when interfaces have stabilized. | 44 # when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|. |
38 rtc_source_set("rtp_interfaces") { | 45 rtc_source_set("rtp_interfaces") { |
39 sources = [ | 46 sources = [ |
40 "rtcp_packet_sink_interface.h", | 47 "rtcp_packet_sink_interface.h", |
41 "rtp_packet_sink_interface.h", | 48 "rtp_packet_sink_interface.h", |
42 "rtp_stream_receiver_controller_interface.h", | 49 "rtp_stream_receiver_controller_interface.h", |
43 "rtp_transport_controller_send_interface.h", | 50 "rtp_transport_controller_send_interface.h", |
44 ] | 51 ] |
45 deps = [ | 52 deps = [ |
46 "../rtc_base:rtc_base_approved", | 53 "../rtc_base:rtc_base_approved", |
47 ] | 54 ] |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
137 "bitrate_estimator_tests.cc", | 144 "bitrate_estimator_tests.cc", |
138 "call_unittest.cc", | 145 "call_unittest.cc", |
139 "flexfec_receive_stream_unittest.cc", | 146 "flexfec_receive_stream_unittest.cc", |
140 "rtcp_demuxer_unittest.cc", | 147 "rtcp_demuxer_unittest.cc", |
141 "rtp_demuxer_unittest.cc", | 148 "rtp_demuxer_unittest.cc", |
142 "rtp_rtcp_demuxer_helper_unittest.cc", | 149 "rtp_rtcp_demuxer_helper_unittest.cc", |
143 "rtx_receive_stream_unittest.cc", | 150 "rtx_receive_stream_unittest.cc", |
144 ] | 151 ] |
145 deps = [ | 152 deps = [ |
146 ":call", | 153 ":call", |
154 ":mock_rtp_interfaces", | |
eladalon
2017/07/26 09:01:05
I find it odd that this didn't actually appear to
danilchap
2017/07/26 10:28:59
Because we currently do not check that only header
eladalon
2017/07/26 11:24:27
Done.
| |
147 ":rtp_interfaces", | 155 ":rtp_interfaces", |
148 ":rtp_receiver", | 156 ":rtp_receiver", |
149 ":rtp_sender", | 157 ":rtp_sender", |
150 "..:webrtc_common", | 158 "..:webrtc_common", |
151 "../api:mock_audio_mixer", | 159 "../api:mock_audio_mixer", |
152 "../logging:rtc_event_log_api", | 160 "../logging:rtc_event_log_api", |
153 "../modules/audio_device:mock_audio_device", | 161 "../modules/audio_device:mock_audio_device", |
154 "../modules/audio_mixer", | 162 "../modules/audio_mixer", |
155 "../modules/bitrate_controller", | 163 "../modules/bitrate_controller", |
156 "../modules/congestion_controller:mock_congestion_controller", | 164 "../modules/congestion_controller:mock_congestion_controller", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
207 "../video", | 215 "../video", |
208 "../voice_engine", | 216 "../voice_engine", |
209 "//testing/gtest", | 217 "//testing/gtest", |
210 ] | 218 ] |
211 if (!build_with_chromium && is_clang) { | 219 if (!build_with_chromium && is_clang) { |
212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 220 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 221 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
214 } | 222 } |
215 } | 223 } |
216 } | 224 } |
OLD | NEW |