| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | |
| 2 # | |
| 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 | |
| 5 # tree. An additional intellectual property rights grant can be found | |
| 6 # in the file PATENTS. All contributing project authors may | |
| 7 # be found in the AUTHORS file in the root of the source tree. | |
| 8 | |
| 9 { | |
| 10 'targets': [ | |
| 11 { | |
| 12 'target_name': 'rtp_rtcp', | |
| 13 'type': 'static_library', | |
| 14 'dependencies': [ | |
| 15 '<(webrtc_root)/common_video/common_video.gyp:common_video', | |
| 16 '<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator', | |
| 17 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | |
| 18 ], | |
| 19 'sources': [ | |
| 20 # Common | |
| 21 'include/flexfec_receiver.h', | |
| 22 'include/flexfec_sender.h', | |
| 23 'include/receive_statistics.h', | |
| 24 'include/remote_ntp_time_estimator.h', | |
| 25 'include/rtp_header_parser.h', | |
| 26 'include/rtp_payload_registry.h', | |
| 27 'include/rtp_receiver.h', | |
| 28 'include/rtp_rtcp.h', | |
| 29 'include/rtp_rtcp_defines.h', | |
| 30 'include/ulpfec_receiver.h', | |
| 31 'source/byte_io.h', | |
| 32 'source/flexfec_receiver.cc', | |
| 33 'source/packet_loss_stats.cc', | |
| 34 'source/packet_loss_stats.h', | |
| 35 'source/playout_delay_oracle.cc', | |
| 36 'source/playout_delay_oracle.h', | |
| 37 'source/receive_statistics_impl.cc', | |
| 38 'source/receive_statistics_impl.h', | |
| 39 'source/remote_ntp_time_estimator.cc', | |
| 40 'source/rtcp_packet.cc', | |
| 41 'source/rtcp_packet.h', | |
| 42 'source/rtcp_packet/app.cc', | |
| 43 'source/rtcp_packet/app.h', | |
| 44 'source/rtcp_packet/bye.cc', | |
| 45 'source/rtcp_packet/bye.h', | |
| 46 'source/rtcp_packet/common_header.cc', | |
| 47 'source/rtcp_packet/common_header.h', | |
| 48 'source/rtcp_packet/compound_packet.cc', | |
| 49 'source/rtcp_packet/compound_packet.h', | |
| 50 'source/rtcp_packet/dlrr.cc', | |
| 51 'source/rtcp_packet/dlrr.h', | |
| 52 'source/rtcp_packet/extended_jitter_report.cc', | |
| 53 'source/rtcp_packet/extended_jitter_report.h', | |
| 54 'source/rtcp_packet/extended_reports.cc', | |
| 55 'source/rtcp_packet/extended_reports.h', | |
| 56 'source/rtcp_packet/fir.cc', | |
| 57 'source/rtcp_packet/fir.h', | |
| 58 'source/rtcp_packet/nack.cc', | |
| 59 'source/rtcp_packet/nack.h', | |
| 60 'source/rtcp_packet/pli.cc', | |
| 61 'source/rtcp_packet/pli.h', | |
| 62 'source/rtcp_packet/psfb.cc', | |
| 63 'source/rtcp_packet/psfb.h', | |
| 64 'source/rtcp_packet/rapid_resync_request.cc', | |
| 65 'source/rtcp_packet/rapid_resync_request.h', | |
| 66 'source/rtcp_packet/receiver_report.cc', | |
| 67 'source/rtcp_packet/receiver_report.h', | |
| 68 'source/rtcp_packet/remb.cc', | |
| 69 'source/rtcp_packet/remb.h', | |
| 70 'source/rtcp_packet/report_block.cc', | |
| 71 'source/rtcp_packet/report_block.h', | |
| 72 'source/rtcp_packet/rpsi.cc', | |
| 73 'source/rtcp_packet/rpsi.h', | |
| 74 'source/rtcp_packet/rrtr.cc', | |
| 75 'source/rtcp_packet/rrtr.h', | |
| 76 'source/rtcp_packet/rtpfb.cc', | |
| 77 'source/rtcp_packet/rtpfb.h', | |
| 78 'source/rtcp_packet/sdes.cc', | |
| 79 'source/rtcp_packet/sdes.h', | |
| 80 'source/rtcp_packet/sender_report.cc', | |
| 81 'source/rtcp_packet/sender_report.h', | |
| 82 'source/rtcp_packet/sli.cc', | |
| 83 'source/rtcp_packet/sli.h', | |
| 84 'source/rtcp_packet/target_bitrate.cc', | |
| 85 'source/rtcp_packet/target_bitrate.h', | |
| 86 'source/rtcp_packet/tmmb_item.cc', | |
| 87 'source/rtcp_packet/tmmb_item.h', | |
| 88 'source/rtcp_packet/tmmbn.cc', | |
| 89 'source/rtcp_packet/tmmbn.h', | |
| 90 'source/rtcp_packet/tmmbr.cc', | |
| 91 'source/rtcp_packet/tmmbr.h', | |
| 92 'source/rtcp_packet/transport_feedback.cc', | |
| 93 'source/rtcp_packet/transport_feedback.h', | |
| 94 'source/rtcp_packet/voip_metric.cc', | |
| 95 'source/rtcp_packet/voip_metric.h', | |
| 96 'source/rtcp_receiver.cc', | |
| 97 'source/rtcp_receiver.h', | |
| 98 'source/rtcp_sender.cc', | |
| 99 'source/rtcp_sender.h', | |
| 100 'source/rtcp_utility.cc', | |
| 101 'source/rtcp_utility.h', | |
| 102 'source/rtp_header_extension.cc', | |
| 103 'source/rtp_header_extension.h', | |
| 104 'source/rtp_header_extensions.cc', | |
| 105 'source/rtp_header_extensions.h', | |
| 106 'source/rtp_header_parser.cc', | |
| 107 'source/rtp_packet.cc', | |
| 108 'source/rtp_packet.h', | |
| 109 'source/rtp_packet_received.h', | |
| 110 'source/rtp_packet_to_send.h', | |
| 111 'source/rtp_receiver_impl.cc', | |
| 112 'source/rtp_receiver_impl.h', | |
| 113 'source/rtp_rtcp_config.h', | |
| 114 'source/rtp_rtcp_impl.cc', | |
| 115 'source/rtp_rtcp_impl.h', | |
| 116 'source/rtp_sender.cc', | |
| 117 'source/rtp_sender.h', | |
| 118 'source/rtp_utility.cc', | |
| 119 'source/rtp_utility.h', | |
| 120 'source/ssrc_database.cc', | |
| 121 'source/ssrc_database.h', | |
| 122 'source/time_util.cc', | |
| 123 'source/time_util.h', | |
| 124 'source/tmmbr_help.cc', | |
| 125 'source/tmmbr_help.h', | |
| 126 # Audio Files | |
| 127 'source/dtmf_queue.cc', | |
| 128 'source/dtmf_queue.h', | |
| 129 'source/rtp_receiver_audio.cc', | |
| 130 'source/rtp_receiver_audio.h', | |
| 131 'source/rtp_sender_audio.cc', | |
| 132 'source/rtp_sender_audio.h', | |
| 133 # Video Files | |
| 134 'source/fec_private_tables_random.h', | |
| 135 'source/fec_private_tables_bursty.h', | |
| 136 'source/flexfec_header_reader_writer.cc', | |
| 137 'source/flexfec_header_reader_writer.h', | |
| 138 'source/flexfec_sender.cc', | |
| 139 'source/forward_error_correction.cc', | |
| 140 'source/forward_error_correction.h', | |
| 141 'source/forward_error_correction_internal.cc', | |
| 142 'source/forward_error_correction_internal.h', | |
| 143 'source/rtp_packet_history.cc', | |
| 144 'source/rtp_packet_history.h', | |
| 145 'source/rtp_payload_registry.cc', | |
| 146 'source/rtp_receiver_strategy.cc', | |
| 147 'source/rtp_receiver_strategy.h', | |
| 148 'source/rtp_receiver_video.cc', | |
| 149 'source/rtp_receiver_video.h', | |
| 150 'source/rtp_sender_video.cc', | |
| 151 'source/rtp_sender_video.h', | |
| 152 'source/video_codec_information.h', | |
| 153 'source/rtp_format.cc', | |
| 154 'source/rtp_format.h', | |
| 155 'source/rtp_format_h264.cc', | |
| 156 'source/rtp_format_h264.h', | |
| 157 'source/rtp_format_vp8.cc', | |
| 158 'source/rtp_format_vp8.h', | |
| 159 'source/rtp_format_vp9.cc', | |
| 160 'source/rtp_format_vp9.h', | |
| 161 'source/rtp_format_video_generic.cc', | |
| 162 'source/rtp_format_video_generic.h', | |
| 163 'source/ulpfec_generator.cc', | |
| 164 'source/ulpfec_generator.h', | |
| 165 'source/ulpfec_header_reader_writer.cc', | |
| 166 'source/ulpfec_header_reader_writer.h', | |
| 167 'source/ulpfec_receiver_impl.cc', | |
| 168 'source/ulpfec_receiver_impl.h', | |
| 169 'source/vp8_partition_aggregator.cc', | |
| 170 'source/vp8_partition_aggregator.h', | |
| 171 # Mocks | |
| 172 'mocks/mock_rtp_rtcp.h', | |
| 173 'mocks/mock_recovered_packet_receiver.h', | |
| 174 'source/mock/mock_rtp_payload_strategy.h', | |
| 175 ], # source | |
| 176 'conditions': [ | |
| 177 ['enable_bwe_test_logging==1', { | |
| 178 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], | |
| 179 }, { | |
| 180 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], | |
| 181 }], | |
| 182 ], | |
| 183 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | |
| 184 'msvs_disabled_warnings': [ 4267, ], | |
| 185 }, | |
| 186 ], | |
| 187 } | |
| OLD | NEW |