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 17 matching lines...) Expand all Loading... |
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 "../base:rtc_base", | 31 "../base:rtc_base", |
32 "../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 # TODO(eladalon): Rename rtc_source_set? Poll reviewers. |
38 rtc_source_set("rtp_interfaces") { | 39 rtc_source_set("rtp_interfaces") { |
39 sources = [ | 40 sources = [ |
| 41 "rtcp_packet_sink_interface.h", |
40 "rtp_packet_sink_interface.h", | 42 "rtp_packet_sink_interface.h", |
41 "rtp_transport_controller_send_interface.h", | 43 "rtp_transport_controller_send_interface.h", |
42 ] | 44 ] |
43 } | 45 } |
44 | 46 |
45 rtc_source_set("rtp_receiver") { | 47 rtc_source_set("rtp_receiver") { |
46 sources = [ | 48 sources = [ |
| 49 "rsid_resolution_observer.h", |
| 50 "rtcp_demuxer.cc", |
| 51 "rtcp_demuxer.h", |
47 "rtp_demuxer.cc", | 52 "rtp_demuxer.cc", |
48 "rtp_demuxer.h", | 53 "rtp_demuxer.h", |
| 54 "rtp_rtcp_demuxer_helper.cc", |
| 55 "rtp_rtcp_demuxer_helper.h", |
49 "rtx_receive_stream.cc", | 56 "rtx_receive_stream.cc", |
50 "rtx_receive_stream.h", | 57 "rtx_receive_stream.h", |
51 ] | 58 ] |
52 deps = [ | 59 deps = [ |
53 ":rtp_interfaces", | 60 ":rtp_interfaces", |
54 "../base:rtc_base_approved", | 61 "../base:rtc_base_approved", |
55 "../modules/rtp_rtcp", | 62 "../modules/rtp_rtcp", |
56 ] | 63 ] |
57 } | 64 } |
58 | 65 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 # gets additional generated targets which would require many lines here to | 124 # gets additional generated targets which would require many lines here to |
118 # cover (which would be confusing to read and hard to maintain). | 125 # cover (which would be confusing to read and hard to maintain). |
119 if (!is_android && !is_ios) { | 126 if (!is_android && !is_ios) { |
120 visibility = [ "//webrtc:video_engine_tests" ] | 127 visibility = [ "//webrtc:video_engine_tests" ] |
121 } | 128 } |
122 sources = [ | 129 sources = [ |
123 "bitrate_allocator_unittest.cc", | 130 "bitrate_allocator_unittest.cc", |
124 "bitrate_estimator_tests.cc", | 131 "bitrate_estimator_tests.cc", |
125 "call_unittest.cc", | 132 "call_unittest.cc", |
126 "flexfec_receive_stream_unittest.cc", | 133 "flexfec_receive_stream_unittest.cc", |
| 134 "rtcp_demuxer_unittest.cc", |
127 "rtp_demuxer_unittest.cc", | 135 "rtp_demuxer_unittest.cc", |
| 136 "rtp_rtcp_demuxer_helper_unittest.cc", |
128 "rtx_receive_stream_unittest.cc", | 137 "rtx_receive_stream_unittest.cc", |
129 ] | 138 ] |
130 deps = [ | 139 deps = [ |
131 ":call", | 140 ":call", |
132 ":rtp_interfaces", | 141 ":rtp_interfaces", |
133 ":rtp_receiver", | 142 ":rtp_receiver", |
134 ":rtp_sender", | 143 ":rtp_sender", |
135 "../api:mock_audio_mixer", | 144 "../api:mock_audio_mixer", |
136 "../base:rtc_base_approved", | 145 "../base:rtc_base_approved", |
137 "../logging:rtc_event_log_api", | 146 "../logging:rtc_event_log_api", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 "//testing/gtest", | 200 "//testing/gtest", |
192 "//webrtc/test:field_trial", | 201 "//webrtc/test:field_trial", |
193 "//webrtc/test:test_common", | 202 "//webrtc/test:test_common", |
194 ] | 203 ] |
195 if (!build_with_chromium && is_clang) { | 204 if (!build_with_chromium && is_clang) { |
196 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 205 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 206 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
198 } | 207 } |
199 } | 208 } |
200 } | 209 } |
OLD | NEW |