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

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

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
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/include/fec_receiver.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
11 rtc_static_library("rtp_rtcp") { 11 rtc_static_library("rtp_rtcp") {
12 sources = [ 12 sources = [
13 "include/fec_receiver.h",
14 "include/flexfec_receiver.h", 13 "include/flexfec_receiver.h",
15 "include/receive_statistics.h", 14 "include/receive_statistics.h",
16 "include/remote_ntp_time_estimator.h", 15 "include/remote_ntp_time_estimator.h",
17 "include/rtp_header_parser.h", 16 "include/rtp_header_parser.h",
18 "include/rtp_payload_registry.h", 17 "include/rtp_payload_registry.h",
19 "include/rtp_receiver.h", 18 "include/rtp_receiver.h",
20 "include/rtp_rtcp.h", 19 "include/rtp_rtcp.h",
21 "include/rtp_rtcp_defines.h", 20 "include/rtp_rtcp_defines.h",
21 "include/ulpfec_receiver.h",
22 "mocks/mock_rtp_rtcp.h", 22 "mocks/mock_rtp_rtcp.h",
23 "source/byte_io.h", 23 "source/byte_io.h",
24 "source/dtmf_queue.cc", 24 "source/dtmf_queue.cc",
25 "source/dtmf_queue.h", 25 "source/dtmf_queue.h",
26 "source/fec_private_tables_bursty.h", 26 "source/fec_private_tables_bursty.h",
27 "source/fec_private_tables_random.h", 27 "source/fec_private_tables_random.h",
28 "source/fec_receiver_impl.cc",
29 "source/fec_receiver_impl.h",
30 "source/flexfec_header_reader_writer.cc", 28 "source/flexfec_header_reader_writer.cc",
31 "source/flexfec_header_reader_writer.h", 29 "source/flexfec_header_reader_writer.h",
32 "source/flexfec_receiver_impl.cc", 30 "source/flexfec_receiver_impl.cc",
33 "source/flexfec_receiver_impl.h", 31 "source/flexfec_receiver_impl.h",
34 "source/forward_error_correction.cc", 32 "source/forward_error_correction.cc",
35 "source/forward_error_correction.h", 33 "source/forward_error_correction.h",
36 "source/forward_error_correction_internal.cc", 34 "source/forward_error_correction_internal.cc",
37 "source/forward_error_correction_internal.h", 35 "source/forward_error_correction_internal.h",
38 "source/mock/mock_rtp_payload_strategy.h", 36 "source/mock/mock_rtp_payload_strategy.h",
39 "source/packet_loss_stats.cc", 37 "source/packet_loss_stats.cc",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 "source/rtp_utility.cc", 145 "source/rtp_utility.cc",
148 "source/rtp_utility.h", 146 "source/rtp_utility.h",
149 "source/ssrc_database.cc", 147 "source/ssrc_database.cc",
150 "source/ssrc_database.h", 148 "source/ssrc_database.h",
151 "source/time_util.cc", 149 "source/time_util.cc",
152 "source/time_util.h", 150 "source/time_util.h",
153 "source/tmmbr_help.cc", 151 "source/tmmbr_help.cc",
154 "source/tmmbr_help.h", 152 "source/tmmbr_help.h",
155 "source/ulpfec_header_reader_writer.cc", 153 "source/ulpfec_header_reader_writer.cc",
156 "source/ulpfec_header_reader_writer.h", 154 "source/ulpfec_header_reader_writer.h",
155 "source/ulpfec_receiver_impl.cc",
156 "source/ulpfec_receiver_impl.h",
157 "source/video_codec_information.h", 157 "source/video_codec_information.h",
158 "source/vp8_partition_aggregator.cc", 158 "source/vp8_partition_aggregator.cc",
159 "source/vp8_partition_aggregator.h", 159 "source/vp8_partition_aggregator.h",
160 ] 160 ]
161 161
162 if (rtc_enable_bwe_test_logging) { 162 if (rtc_enable_bwe_test_logging) {
163 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ] 163 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1" ]
164 } else { 164 } else {
165 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ] 165 defines = [ "BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0" ]
166 } 166 }
(...skipping 30 matching lines...) Expand all
197 "test/testFec/test_packet_masks_metrics.cc", 197 "test/testFec/test_packet_masks_metrics.cc",
198 ] 198 ]
199 199
200 deps = [ 200 deps = [
201 ":rtp_rtcp", 201 ":rtp_rtcp",
202 "//testing/gtest", 202 "//testing/gtest",
203 "//webrtc/test:test_support_main", 203 "//webrtc/test:test_support_main",
204 ] 204 ]
205 } # test_packet_masks_metrics 205 } # test_packet_masks_metrics
206 } 206 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/rtp_rtcp/include/fec_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698