Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/modules/rtp_rtcp/BUILD.gn

Issue 3014463002: Break rtp_rtcp_format out of rtp_rtcp, to resolve circular dependencies (Closed)
Patch Set: include stddef for size_t Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
eladalon 2017/09/12 14:41:03 Not in this CL, but I wonder if such a utility mod
danilchap 2017/09/12 15:17:17 probably should be merged with rtc_base/bytebuffer
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
11 rtc_static_library("rtp_rtcp") { 39 rtc_static_library("rtp_rtcp") {
12 sources = [ 40 sources = [
13 "include/flexfec_receiver.h", 41 "include/flexfec_receiver.h",
14 "include/flexfec_sender.h", 42 "include/flexfec_sender.h",
15 "include/receive_statistics.h", 43 "include/receive_statistics.h",
16 "include/remote_ntp_time_estimator.h", 44 "include/remote_ntp_time_estimator.h",
17 "include/rtp_cvo.h",
18 "include/rtp_header_extension_map.h",
19 "include/rtp_header_parser.h", 45 "include/rtp_header_parser.h",
20 "include/rtp_payload_registry.h", 46 "include/rtp_payload_registry.h",
21 "include/rtp_receiver.h", 47 "include/rtp_receiver.h",
22 "include/rtp_rtcp.h", 48 "include/rtp_rtcp.h",
23 "include/rtp_rtcp_defines.h",
24 "include/ulpfec_receiver.h", 49 "include/ulpfec_receiver.h",
25 "source/byte_io.h",
26 "source/dtmf_queue.cc", 50 "source/dtmf_queue.cc",
27 "source/dtmf_queue.h", 51 "source/dtmf_queue.h",
28 "source/fec_private_tables_bursty.h", 52 "source/fec_private_tables_bursty.h",
29 "source/fec_private_tables_random.h", 53 "source/fec_private_tables_random.h",
30 "source/flexfec_header_reader_writer.cc", 54 "source/flexfec_header_reader_writer.cc",
31 "source/flexfec_header_reader_writer.h", 55 "source/flexfec_header_reader_writer.h",
32 "source/flexfec_receiver.cc", 56 "source/flexfec_receiver.cc",
33 "source/flexfec_sender.cc", 57 "source/flexfec_sender.cc",
34 "source/forward_error_correction.cc", 58 "source/forward_error_correction.cc",
35 "source/forward_error_correction.h", 59 "source/forward_error_correction.h",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "source/rtp_format.cc", 127 "source/rtp_format.cc",
104 "source/rtp_format.h", 128 "source/rtp_format.h",
105 "source/rtp_format_h264.cc", 129 "source/rtp_format_h264.cc",
106 "source/rtp_format_h264.h", 130 "source/rtp_format_h264.h",
107 "source/rtp_format_video_generic.cc", 131 "source/rtp_format_video_generic.cc",
108 "source/rtp_format_video_generic.h", 132 "source/rtp_format_video_generic.h",
109 "source/rtp_format_vp8.cc", 133 "source/rtp_format_vp8.cc",
110 "source/rtp_format_vp8.h", 134 "source/rtp_format_vp8.h",
111 "source/rtp_format_vp9.cc", 135 "source/rtp_format_vp9.cc",
112 "source/rtp_format_vp9.h", 136 "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", 137 "source/rtp_header_parser.cc",
117 "source/rtp_packet.cc",
118 "source/rtp_packet.h",
119 "source/rtp_packet_history.cc", 138 "source/rtp_packet_history.cc",
120 "source/rtp_packet_history.h", 139 "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", 140 "source/rtp_payload_registry.cc",
125 "source/rtp_receiver_audio.cc", 141 "source/rtp_receiver_audio.cc",
126 "source/rtp_receiver_audio.h", 142 "source/rtp_receiver_audio.h",
127 "source/rtp_receiver_impl.cc", 143 "source/rtp_receiver_impl.cc",
128 "source/rtp_receiver_impl.h", 144 "source/rtp_receiver_impl.h",
129 "source/rtp_receiver_strategy.cc", 145 "source/rtp_receiver_strategy.cc",
130 "source/rtp_receiver_strategy.h", 146 "source/rtp_receiver_strategy.h",
131 "source/rtp_receiver_video.cc", 147 "source/rtp_receiver_video.cc",
132 "source/rtp_receiver_video.h", 148 "source/rtp_receiver_video.h",
133 "source/rtp_rtcp_config.h", 149 "source/rtp_rtcp_config.h",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 "../../common_video", 192 "../../common_video",
177 "../../logging:rtc_event_log_api", 193 "../../logging:rtc_event_log_api",
178 "../../rtc_base:gtest_prod", 194 "../../rtc_base:gtest_prod",
179 "../../rtc_base:rtc_base_approved", 195 "../../rtc_base:rtc_base_approved",
180 "../../rtc_base:sequenced_task_checker", 196 "../../rtc_base:sequenced_task_checker",
181 "../../system_wrappers", 197 "../../system_wrappers",
182 "../audio_coding:audio_format_conversion", 198 "../audio_coding:audio_format_conversion",
183 "../remote_bitrate_estimator", 199 "../remote_bitrate_estimator",
184 ] 200 ]
185 201
202 public_deps = [
203 ":rtp_rtcp_format",
204 ]
205
186 # TODO(jschuh): Bug 1348: fix this warning. 206 # TODO(jschuh): Bug 1348: fix this warning.
187 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 207 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
188 208
189 if (is_win) { 209 if (is_win) {
190 cflags = [ 210 cflags = [
191 # TODO(kjellander): Bug 261: fix this warning. 211 # TODO(kjellander): Bug 261: fix this warning.
192 "/wd4373", # virtual function override. 212 "/wd4373", # virtual function override.
193 ] 213 ]
194 } 214 }
195 } 215 }
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 ] 379 ]
360 380
361 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. 381 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning.
362 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 382 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
363 if (!build_with_chromium && is_clang) { 383 if (!build_with_chromium && is_clang) {
364 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 384 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
365 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 385 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
366 } 386 }
367 } 387 }
368 } 388 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/rtp_rtcp/source/byte_io.h » ('j') | webrtc/modules/rtp_rtcp/source/byte_io.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698