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

Side by Side Diff: webrtc/modules/rtp_rtcp/rtp_rtcp.gypi

Issue 2451643002: Rename FecReceiver to UlpfecReceiver. (Closed)
Patch Set: Fix GYP. Created 4 years, 1 month 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'rtp_rtcp', 12 'target_name': 'rtp_rtcp',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [ 14 'dependencies': [
15 '<(webrtc_root)/common_video/common_video.gyp:common_video', 15 '<(webrtc_root)/common_video/common_video.gyp:common_video',
16 '<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator', 16 '<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator',
17 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 17 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 # Common 20 # Common
21 'include/fec_receiver.h',
22 'include/flexfec_receiver.h', 21 'include/flexfec_receiver.h',
23 'include/receive_statistics.h', 22 'include/receive_statistics.h',
24 'include/remote_ntp_time_estimator.h', 23 'include/remote_ntp_time_estimator.h',
25 'include/rtp_header_parser.h', 24 'include/rtp_header_parser.h',
26 'include/rtp_payload_registry.h', 25 'include/rtp_payload_registry.h',
27 'include/rtp_receiver.h', 26 'include/rtp_receiver.h',
28 'include/rtp_rtcp.h', 27 'include/rtp_rtcp.h',
29 'include/rtp_rtcp_defines.h', 28 'include/rtp_rtcp_defines.h',
29 'include/ulpfec_receiver.h',
30 'source/byte_io.h', 30 'source/byte_io.h',
31 'source/fec_receiver_impl.cc',
32 'source/fec_receiver_impl.h',
33 'source/flexfec_receiver_impl.cc', 31 'source/flexfec_receiver_impl.cc',
34 'source/flexfec_receiver_impl.h', 32 'source/flexfec_receiver_impl.h',
35 'source/packet_loss_stats.cc', 33 'source/packet_loss_stats.cc',
36 'source/packet_loss_stats.h', 34 'source/packet_loss_stats.h',
37 'source/playout_delay_oracle.cc', 35 'source/playout_delay_oracle.cc',
38 'source/playout_delay_oracle.h', 36 'source/playout_delay_oracle.h',
39 'source/receive_statistics_impl.cc', 37 'source/receive_statistics_impl.cc',
40 'source/receive_statistics_impl.h', 38 'source/receive_statistics_impl.h',
41 'source/remote_ntp_time_estimator.cc', 39 'source/remote_ntp_time_estimator.cc',
42 'source/rtcp_packet.cc', 40 'source/rtcp_packet.cc',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 'source/rtp_format_h264.cc', 154 'source/rtp_format_h264.cc',
157 'source/rtp_format_h264.h', 155 'source/rtp_format_h264.h',
158 'source/rtp_format_vp8.cc', 156 'source/rtp_format_vp8.cc',
159 'source/rtp_format_vp8.h', 157 'source/rtp_format_vp8.h',
160 'source/rtp_format_vp9.cc', 158 'source/rtp_format_vp9.cc',
161 'source/rtp_format_vp9.h', 159 'source/rtp_format_vp9.h',
162 'source/rtp_format_video_generic.cc', 160 'source/rtp_format_video_generic.cc',
163 'source/rtp_format_video_generic.h', 161 'source/rtp_format_video_generic.h',
164 'source/ulpfec_header_reader_writer.cc', 162 'source/ulpfec_header_reader_writer.cc',
165 'source/ulpfec_header_reader_writer.h', 163 'source/ulpfec_header_reader_writer.h',
164 'source/ulpfec_receiver_impl.cc',
165 'source/ulpfec_receiver_impl.h',
166 'source/vp8_partition_aggregator.cc', 166 'source/vp8_partition_aggregator.cc',
167 'source/vp8_partition_aggregator.h', 167 'source/vp8_partition_aggregator.h',
168 # Mocks 168 # Mocks
169 'mocks/mock_rtp_rtcp.h', 169 'mocks/mock_rtp_rtcp.h',
170 'mocks/mock_recovered_packet_receiver.h', 170 'mocks/mock_recovered_packet_receiver.h',
171 'source/mock/mock_rtp_payload_strategy.h', 171 'source/mock/mock_rtp_payload_strategy.h',
172 ], # source 172 ], # source
173 'conditions': [ 173 'conditions': [
174 ['enable_bwe_test_logging==1', { 174 ['enable_bwe_test_logging==1', {
175 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], 175 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ],
176 }, { 176 }, {
177 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], 177 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ],
178 }], 178 }],
179 ], 179 ],
180 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 180 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
181 'msvs_disabled_warnings': [ 4267, ], 181 'msvs_disabled_warnings': [ 4267, ],
182 }, 182 },
183 ], 183 ],
184 } 184 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/include/ulpfec_receiver.h ('k') | webrtc/modules/rtp_rtcp/source/fec_receiver_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698