OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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_static_library("rtp_rtcp_format") { |
| 12 sources = [ |
| 13 "include/rtp_header_extension_map.h", |
| 14 "include/rtp_rtcp_defines.h", |
| 15 "source/rtp_header_extension_map.cc", |
| 16 "source/rtp_header_extensions.cc", |
| 17 "source/rtp_header_extensions.h", |
| 18 "source/rtp_packet.cc", |
| 19 "source/rtp_packet.h", |
| 20 "source/rtp_packet_received.cc", |
| 21 "source/rtp_packet_received.h", |
| 22 "source/rtp_packet_to_send.h", |
| 23 "source/rtp_utility.cc", |
| 24 "source/rtp_utility.h", |
| 25 ] |
| 26 |
| 27 deps = [ |
| 28 "../../rtc_base:rtc_base_approved", |
| 29 ] |
| 30 } |
| 31 |
11 rtc_static_library("rtp_rtcp") { | 32 rtc_static_library("rtp_rtcp") { |
12 sources = [ | 33 sources = [ |
13 "include/flexfec_receiver.h", | 34 "include/flexfec_receiver.h", |
14 "include/flexfec_sender.h", | 35 "include/flexfec_sender.h", |
15 "include/receive_statistics.h", | 36 "include/receive_statistics.h", |
16 "include/remote_ntp_time_estimator.h", | 37 "include/remote_ntp_time_estimator.h", |
17 "include/rtp_cvo.h", | 38 "include/rtp_cvo.h", |
18 "include/rtp_header_extension_map.h", | |
19 "include/rtp_header_parser.h", | 39 "include/rtp_header_parser.h", |
20 "include/rtp_payload_registry.h", | 40 "include/rtp_payload_registry.h", |
21 "include/rtp_receiver.h", | 41 "include/rtp_receiver.h", |
22 "include/rtp_rtcp.h", | 42 "include/rtp_rtcp.h", |
23 "include/rtp_rtcp_defines.h", | |
24 "include/ulpfec_receiver.h", | 43 "include/ulpfec_receiver.h", |
25 "source/byte_io.h", | 44 "source/byte_io.h", |
26 "source/dtmf_queue.cc", | 45 "source/dtmf_queue.cc", |
27 "source/dtmf_queue.h", | 46 "source/dtmf_queue.h", |
28 "source/fec_private_tables_bursty.h", | 47 "source/fec_private_tables_bursty.h", |
29 "source/fec_private_tables_random.h", | 48 "source/fec_private_tables_random.h", |
30 "source/flexfec_header_reader_writer.cc", | 49 "source/flexfec_header_reader_writer.cc", |
31 "source/flexfec_header_reader_writer.h", | 50 "source/flexfec_header_reader_writer.h", |
32 "source/flexfec_receiver.cc", | 51 "source/flexfec_receiver.cc", |
33 "source/flexfec_sender.cc", | 52 "source/flexfec_sender.cc", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "source/rtp_format.cc", | 122 "source/rtp_format.cc", |
104 "source/rtp_format.h", | 123 "source/rtp_format.h", |
105 "source/rtp_format_h264.cc", | 124 "source/rtp_format_h264.cc", |
106 "source/rtp_format_h264.h", | 125 "source/rtp_format_h264.h", |
107 "source/rtp_format_video_generic.cc", | 126 "source/rtp_format_video_generic.cc", |
108 "source/rtp_format_video_generic.h", | 127 "source/rtp_format_video_generic.h", |
109 "source/rtp_format_vp8.cc", | 128 "source/rtp_format_vp8.cc", |
110 "source/rtp_format_vp8.h", | 129 "source/rtp_format_vp8.h", |
111 "source/rtp_format_vp9.cc", | 130 "source/rtp_format_vp9.cc", |
112 "source/rtp_format_vp9.h", | 131 "source/rtp_format_vp9.h", |
113 "source/rtp_header_extension_map.cc", | |
114 "source/rtp_header_extensions.cc", | |
115 "source/rtp_header_extensions.h", | |
116 "source/rtp_header_parser.cc", | 132 "source/rtp_header_parser.cc", |
117 "source/rtp_packet.cc", | |
118 "source/rtp_packet.h", | |
119 "source/rtp_packet_history.cc", | 133 "source/rtp_packet_history.cc", |
120 "source/rtp_packet_history.h", | 134 "source/rtp_packet_history.h", |
121 "source/rtp_packet_received.cc", | |
122 "source/rtp_packet_received.h", | |
123 "source/rtp_packet_to_send.h", | |
124 "source/rtp_payload_registry.cc", | 135 "source/rtp_payload_registry.cc", |
125 "source/rtp_receiver_audio.cc", | 136 "source/rtp_receiver_audio.cc", |
126 "source/rtp_receiver_audio.h", | 137 "source/rtp_receiver_audio.h", |
127 "source/rtp_receiver_impl.cc", | 138 "source/rtp_receiver_impl.cc", |
128 "source/rtp_receiver_impl.h", | 139 "source/rtp_receiver_impl.h", |
129 "source/rtp_receiver_strategy.cc", | 140 "source/rtp_receiver_strategy.cc", |
130 "source/rtp_receiver_strategy.h", | 141 "source/rtp_receiver_strategy.h", |
131 "source/rtp_receiver_video.cc", | 142 "source/rtp_receiver_video.cc", |
132 "source/rtp_receiver_video.h", | 143 "source/rtp_receiver_video.h", |
133 "source/rtp_rtcp_config.h", | 144 "source/rtp_rtcp_config.h", |
134 "source/rtp_rtcp_impl.cc", | 145 "source/rtp_rtcp_impl.cc", |
135 "source/rtp_rtcp_impl.h", | 146 "source/rtp_rtcp_impl.h", |
136 "source/rtp_sender.cc", | 147 "source/rtp_sender.cc", |
137 "source/rtp_sender.h", | 148 "source/rtp_sender.h", |
138 "source/rtp_sender_audio.cc", | 149 "source/rtp_sender_audio.cc", |
139 "source/rtp_sender_audio.h", | 150 "source/rtp_sender_audio.h", |
140 "source/rtp_sender_video.cc", | 151 "source/rtp_sender_video.cc", |
141 "source/rtp_sender_video.h", | 152 "source/rtp_sender_video.h", |
142 "source/rtp_utility.cc", | |
143 "source/rtp_utility.h", | |
144 "source/time_util.cc", | 153 "source/time_util.cc", |
145 "source/time_util.h", | 154 "source/time_util.h", |
146 "source/tmmbr_help.cc", | 155 "source/tmmbr_help.cc", |
147 "source/tmmbr_help.h", | 156 "source/tmmbr_help.h", |
148 "source/ulpfec_generator.cc", | 157 "source/ulpfec_generator.cc", |
149 "source/ulpfec_generator.h", | 158 "source/ulpfec_generator.h", |
150 "source/ulpfec_header_reader_writer.cc", | 159 "source/ulpfec_header_reader_writer.cc", |
151 "source/ulpfec_header_reader_writer.h", | 160 "source/ulpfec_header_reader_writer.h", |
152 "source/ulpfec_receiver_impl.cc", | 161 "source/ulpfec_receiver_impl.cc", |
153 "source/ulpfec_receiver_impl.h", | 162 "source/ulpfec_receiver_impl.h", |
(...skipping 22 matching lines...) Expand all Loading... |
176 "../../common_video", | 185 "../../common_video", |
177 "../../logging:rtc_event_log_api", | 186 "../../logging:rtc_event_log_api", |
178 "../../rtc_base:gtest_prod", | 187 "../../rtc_base:gtest_prod", |
179 "../../rtc_base:rtc_base_approved", | 188 "../../rtc_base:rtc_base_approved", |
180 "../../rtc_base:sequenced_task_checker", | 189 "../../rtc_base:sequenced_task_checker", |
181 "../../system_wrappers", | 190 "../../system_wrappers", |
182 "../audio_coding:audio_format_conversion", | 191 "../audio_coding:audio_format_conversion", |
183 "../remote_bitrate_estimator", | 192 "../remote_bitrate_estimator", |
184 ] | 193 ] |
185 | 194 |
| 195 public_deps = [ |
| 196 ":rtp_rtcp_format", |
| 197 ] |
| 198 |
186 # TODO(jschuh): Bug 1348: fix this warning. | 199 # TODO(jschuh): Bug 1348: fix this warning. |
187 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 200 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
188 | 201 |
189 if (is_win) { | 202 if (is_win) { |
190 cflags = [ | 203 cflags = [ |
191 # TODO(kjellander): Bug 261: fix this warning. | 204 # TODO(kjellander): Bug 261: fix this warning. |
192 "/wd4373", # virtual function override. | 205 "/wd4373", # virtual function override. |
193 ] | 206 ] |
194 } | 207 } |
195 } | 208 } |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ] | 372 ] |
360 | 373 |
361 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 374 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
362 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 375 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
363 if (!build_with_chromium && is_clang) { | 376 if (!build_with_chromium && is_clang) { |
364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 377 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 378 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
366 } | 379 } |
367 } | 380 } |
368 } | 381 } |
OLD | NEW |