1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
{
'targets': [
{
'target_name': 'rtp_rtcp',
'type': 'static_library',
'dependencies': [
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
'<(webrtc_root)/modules/modules.gyp:paced_sender',
'<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator',
],
'sources': [
# Common
'../interface/fec_receiver.h',
'../interface/receive_statistics.h',
'../interface/remote_ntp_time_estimator.h',
'../interface/rtp_header_parser.h',
'../interface/rtp_payload_registry.h',
'../interface/rtp_receiver.h',
'../interface/rtp_rtcp.h',
'../interface/rtp_rtcp_defines.h',
'bitrate.cc',
'bitrate.h',
'byte_io.h',
'fec_receiver_impl.cc',
'fec_receiver_impl.h',
'receive_statistics_impl.cc',
'receive_statistics_impl.h',
'remote_ntp_time_estimator.cc',
'rtp_header_parser.cc',
'rtp_rtcp_config.h',
'rtp_rtcp_impl.cc',
'rtp_rtcp_impl.h',
'rtcp_packet.cc',
'rtcp_packet.h',
'rtcp_receiver.cc',
'rtcp_receiver.h',
'rtcp_receiver_help.cc',
'rtcp_receiver_help.h',
'rtcp_sender.cc',
'rtcp_sender.h',
'rtcp_utility.cc',
'rtcp_utility.h',
'rtp_header_extension.cc',
'rtp_header_extension.h',
'rtp_receiver_impl.cc',
'rtp_receiver_impl.h',
'rtp_sender.cc',
'rtp_sender.h',
'rtp_utility.cc',
'rtp_utility.h',
'ssrc_database.cc',
'ssrc_database.h',
'tmmbr_help.cc',
'tmmbr_help.h',
# Audio Files
'dtmf_queue.cc',
'dtmf_queue.h',
'rtp_receiver_audio.cc',
'rtp_receiver_audio.h',
'rtp_sender_audio.cc',
'rtp_sender_audio.h',
# Video Files
'fec_private_tables_random.h',
'fec_private_tables_bursty.h',
'forward_error_correction.cc',
'forward_error_correction.h',
'forward_error_correction_internal.cc',
'forward_error_correction_internal.h',
'producer_fec.cc',
'producer_fec.h',
'rtp_packet_history.cc',
'rtp_packet_history.h',
'rtp_payload_registry.cc',
'rtp_receiver_strategy.cc',
'rtp_receiver_strategy.h',
'rtp_receiver_video.cc',
'rtp_receiver_video.h',
'rtp_sender_video.cc',
'rtp_sender_video.h',
'video_codec_information.h',
'rtp_format.cc',
'rtp_format.h',
'rtp_format_h264.cc',
'rtp_format_h264.h',
'rtp_format_vp8.cc',
'rtp_format_vp8.h',
'rtp_format_video_generic.cc',
'rtp_format_video_generic.h',
'vp8_partition_aggregator.cc',
'vp8_partition_aggregator.h',
# Mocks
'../mocks/mock_rtp_rtcp.h',
'mock/mock_rtp_payload_strategy.h',
], # source
# TODO(jschuh): Bug 1348: fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
},
],
}
|