| 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_source_set("rtp_rtcp_format") { |
| 12 sources = [ |
| 13 "include/rtp_cvo.h", |
| 14 "include/rtp_header_extension_map.h", |
| 15 "include/rtp_rtcp_defines.h", |
| 16 "source/byte_io.h", |
| 17 "source/rtp_header_extension_map.cc", |
| 18 "source/rtp_header_extensions.cc", |
| 19 "source/rtp_header_extensions.h", |
| 20 "source/rtp_packet.cc", |
| 21 "source/rtp_packet.h", |
| 22 "source/rtp_packet_received.cc", |
| 23 "source/rtp_packet_received.h", |
| 24 "source/rtp_packet_to_send.h", |
| 25 ] |
| 26 |
| 27 deps = [ |
| 28 "..:module_api", |
| 29 "../..:webrtc_common", |
| 30 "../../api:array_view", |
| 31 "../../api:libjingle_peerconnection_api", |
| 32 "../../api:optional", |
| 33 "../../common_video", |
| 34 "../../rtc_base:rtc_base_approved", |
| 35 "../../system_wrappers", |
| 36 ] |
| 37 |
| 38 # TODO(crbug.com/webrtc/1348): Fix this warning. |
| 39 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 40 } |
| 41 |
| 11 rtc_static_library("rtp_rtcp") { | 42 rtc_static_library("rtp_rtcp") { |
| 12 sources = [ | 43 sources = [ |
| 13 "include/flexfec_receiver.h", | 44 "include/flexfec_receiver.h", |
| 14 "include/flexfec_sender.h", | 45 "include/flexfec_sender.h", |
| 15 "include/receive_statistics.h", | 46 "include/receive_statistics.h", |
| 16 "include/remote_ntp_time_estimator.h", | 47 "include/remote_ntp_time_estimator.h", |
| 17 "include/rtp_cvo.h", | |
| 18 "include/rtp_header_extension_map.h", | |
| 19 "include/rtp_header_parser.h", | 48 "include/rtp_header_parser.h", |
| 20 "include/rtp_payload_registry.h", | 49 "include/rtp_payload_registry.h", |
| 21 "include/rtp_receiver.h", | 50 "include/rtp_receiver.h", |
| 22 "include/rtp_rtcp.h", | 51 "include/rtp_rtcp.h", |
| 23 "include/rtp_rtcp_defines.h", | |
| 24 "include/ulpfec_receiver.h", | 52 "include/ulpfec_receiver.h", |
| 25 "source/byte_io.h", | |
| 26 "source/dtmf_queue.cc", | 53 "source/dtmf_queue.cc", |
| 27 "source/dtmf_queue.h", | 54 "source/dtmf_queue.h", |
| 28 "source/fec_private_tables_bursty.h", | 55 "source/fec_private_tables_bursty.h", |
| 29 "source/fec_private_tables_random.h", | 56 "source/fec_private_tables_random.h", |
| 30 "source/flexfec_header_reader_writer.cc", | 57 "source/flexfec_header_reader_writer.cc", |
| 31 "source/flexfec_header_reader_writer.h", | 58 "source/flexfec_header_reader_writer.h", |
| 32 "source/flexfec_receiver.cc", | 59 "source/flexfec_receiver.cc", |
| 33 "source/flexfec_sender.cc", | 60 "source/flexfec_sender.cc", |
| 34 "source/forward_error_correction.cc", | 61 "source/forward_error_correction.cc", |
| 35 "source/forward_error_correction.h", | 62 "source/forward_error_correction.h", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "source/rtp_format.cc", | 130 "source/rtp_format.cc", |
| 104 "source/rtp_format.h", | 131 "source/rtp_format.h", |
| 105 "source/rtp_format_h264.cc", | 132 "source/rtp_format_h264.cc", |
| 106 "source/rtp_format_h264.h", | 133 "source/rtp_format_h264.h", |
| 107 "source/rtp_format_video_generic.cc", | 134 "source/rtp_format_video_generic.cc", |
| 108 "source/rtp_format_video_generic.h", | 135 "source/rtp_format_video_generic.h", |
| 109 "source/rtp_format_vp8.cc", | 136 "source/rtp_format_vp8.cc", |
| 110 "source/rtp_format_vp8.h", | 137 "source/rtp_format_vp8.h", |
| 111 "source/rtp_format_vp9.cc", | 138 "source/rtp_format_vp9.cc", |
| 112 "source/rtp_format_vp9.h", | 139 "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", | 140 "source/rtp_header_parser.cc", |
| 117 "source/rtp_packet.cc", | |
| 118 "source/rtp_packet.h", | |
| 119 "source/rtp_packet_history.cc", | 141 "source/rtp_packet_history.cc", |
| 120 "source/rtp_packet_history.h", | 142 "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", | 143 "source/rtp_payload_registry.cc", |
| 125 "source/rtp_receiver_audio.cc", | 144 "source/rtp_receiver_audio.cc", |
| 126 "source/rtp_receiver_audio.h", | 145 "source/rtp_receiver_audio.h", |
| 127 "source/rtp_receiver_impl.cc", | 146 "source/rtp_receiver_impl.cc", |
| 128 "source/rtp_receiver_impl.h", | 147 "source/rtp_receiver_impl.h", |
| 129 "source/rtp_receiver_strategy.cc", | 148 "source/rtp_receiver_strategy.cc", |
| 130 "source/rtp_receiver_strategy.h", | 149 "source/rtp_receiver_strategy.h", |
| 131 "source/rtp_receiver_video.cc", | 150 "source/rtp_receiver_video.cc", |
| 132 "source/rtp_receiver_video.h", | 151 "source/rtp_receiver_video.h", |
| 133 "source/rtp_rtcp_config.h", | 152 "source/rtp_rtcp_config.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 "../../common_video", | 195 "../../common_video", |
| 177 "../../logging:rtc_event_log_api", | 196 "../../logging:rtc_event_log_api", |
| 178 "../../rtc_base:gtest_prod", | 197 "../../rtc_base:gtest_prod", |
| 179 "../../rtc_base:rtc_base_approved", | 198 "../../rtc_base:rtc_base_approved", |
| 180 "../../rtc_base:sequenced_task_checker", | 199 "../../rtc_base:sequenced_task_checker", |
| 181 "../../system_wrappers", | 200 "../../system_wrappers", |
| 182 "../audio_coding:audio_format_conversion", | 201 "../audio_coding:audio_format_conversion", |
| 183 "../remote_bitrate_estimator", | 202 "../remote_bitrate_estimator", |
| 184 ] | 203 ] |
| 185 | 204 |
| 205 public_deps = [ |
| 206 ":rtp_rtcp_format", |
| 207 ] |
| 208 |
| 186 # TODO(jschuh): Bug 1348: fix this warning. | 209 # TODO(jschuh): Bug 1348: fix this warning. |
| 187 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 210 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 188 | 211 |
| 189 if (is_win) { | 212 if (is_win) { |
| 190 cflags = [ | 213 cflags = [ |
| 191 # TODO(kjellander): Bug 261: fix this warning. | 214 # TODO(kjellander): Bug 261: fix this warning. |
| 192 "/wd4373", # virtual function override. | 215 "/wd4373", # virtual function override. |
| 193 ] | 216 ] |
| 194 } | 217 } |
| 195 } | 218 } |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 ] | 382 ] |
| 360 | 383 |
| 361 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 384 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 362 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 385 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 363 if (!build_with_chromium && is_clang) { | 386 if (!build_with_chromium && is_clang) { |
| 364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 387 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 388 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 366 } | 389 } |
| 367 } | 390 } |
| 368 } | 391 } |
| OLD | NEW |