andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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': [ |
sprang | 52033d6 | 2016-06-02 02:43:32 -0700 | [diff] [blame] | 15 | '<(webrtc_root)/common_video/common_video.gyp:common_video', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 16 | '<(webrtc_root)/modules/modules.gyp:remote_bitrate_estimator', |
sprang | 52033d6 | 2016-06-02 02:43:32 -0700 | [diff] [blame] | 17 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 18 | ], |
| 19 | 'sources': [ |
| 20 | # Common |
brandtr | a8b3855 | 2016-10-10 16:44:57 -0700 | [diff] [blame] | 21 | 'include/flexfec_receiver.h', |
brandtr | c295e00 | 2016-11-03 09:22:33 -0700 | [diff] [blame] | 22 | 'include/flexfec_sender.h', |
Henrik Kjellander | ff761fb | 2015-11-04 08:31:52 +0100 | [diff] [blame] | 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', |
brandtr | d55c3f6 | 2016-10-31 04:51:33 -0700 | [diff] [blame] | 30 | 'include/ulpfec_receiver.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 31 | 'source/byte_io.h', |
brandtr | 0a4c161 | 2016-11-03 08:18:27 -0700 | [diff] [blame] | 32 | 'source/flexfec_receiver.cc', |
bcornell | 30409b4 | 2015-07-10 18:10:05 -0700 | [diff] [blame] | 33 | 'source/packet_loss_stats.cc', |
| 34 | 'source/packet_loss_stats.h', |
isheriff | 6b4b5f3 | 2016-06-08 00:24:21 -0700 | [diff] [blame] | 35 | 'source/playout_delay_oracle.cc', |
| 36 | 'source/playout_delay_oracle.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 37 | 'source/receive_statistics_impl.cc', |
| 38 | 'source/receive_statistics_impl.h', |
| 39 | 'source/remote_ntp_time_estimator.cc', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 40 | 'source/rtcp_packet.cc', |
| 41 | 'source/rtcp_packet.h', |
danilchap | 0219c9b | 2015-11-18 05:56:53 -0800 | [diff] [blame] | 42 | 'source/rtcp_packet/app.cc', |
| 43 | 'source/rtcp_packet/app.h', |
danilchap | 50c5136 | 2015-11-22 09:03:11 -0800 | [diff] [blame] | 44 | 'source/rtcp_packet/bye.cc', |
| 45 | 'source/rtcp_packet/bye.h', |
Danil Chapovalov | 7021b92 | 2016-03-15 17:39:32 +0100 | [diff] [blame] | 46 | 'source/rtcp_packet/common_header.cc', |
| 47 | 'source/rtcp_packet/common_header.h', |
danilchap | 2f7dea1 | 2016-01-13 02:03:04 -0800 | [diff] [blame] | 48 | 'source/rtcp_packet/compound_packet.cc', |
| 49 | 'source/rtcp_packet/compound_packet.h', |
danilchap | 54999d4 | 2015-12-16 01:56:20 -0800 | [diff] [blame] | 50 | 'source/rtcp_packet/dlrr.cc', |
| 51 | 'source/rtcp_packet/dlrr.h', |
danilchap | f8506cb | 2015-11-13 07:33:20 -0800 | [diff] [blame] | 52 | 'source/rtcp_packet/extended_jitter_report.cc', |
| 53 | 'source/rtcp_packet/extended_jitter_report.h', |
Danil Chapovalov | 256e5b2 | 2016-01-15 14:16:24 +0100 | [diff] [blame] | 54 | 'source/rtcp_packet/extended_reports.cc', |
| 55 | 'source/rtcp_packet/extended_reports.h', |
Danil Chapovalov | 5679da1 | 2016-01-15 13:19:53 +0100 | [diff] [blame] | 56 | 'source/rtcp_packet/fir.cc', |
| 57 | 'source/rtcp_packet/fir.h', |
danilchap | a8890a5 | 2015-12-22 03:43:04 -0800 | [diff] [blame] | 58 | 'source/rtcp_packet/nack.cc', |
| 59 | 'source/rtcp_packet/nack.h', |
danilchap | f8385ad | 2015-11-27 05:36:09 -0800 | [diff] [blame] | 60 | 'source/rtcp_packet/pli.cc', |
| 61 | 'source/rtcp_packet/pli.h', |
| 62 | 'source/rtcp_packet/psfb.cc', |
| 63 | 'source/rtcp_packet/psfb.h', |
danilchap | 09fef9e | 2016-02-09 05:57:51 -0800 | [diff] [blame] | 64 | 'source/rtcp_packet/rapid_resync_request.cc', |
| 65 | 'source/rtcp_packet/rapid_resync_request.h', |
Danil Chapovalov | 97f7e13 | 2015-12-04 16:13:30 +0100 | [diff] [blame] | 66 | 'source/rtcp_packet/receiver_report.cc', |
| 67 | 'source/rtcp_packet/receiver_report.h', |
Danil Chapovalov | a5eba6c | 2016-01-15 12:40:15 +0100 | [diff] [blame] | 68 | 'source/rtcp_packet/remb.cc', |
| 69 | 'source/rtcp_packet/remb.h', |
danilchap | df948f0 | 2015-11-13 03:03:13 -0800 | [diff] [blame] | 70 | 'source/rtcp_packet/report_block.cc', |
| 71 | 'source/rtcp_packet/report_block.h', |
Danil Chapovalov | 2c13297 | 2016-01-15 15:21:21 +0100 | [diff] [blame] | 72 | 'source/rtcp_packet/rpsi.cc', |
| 73 | 'source/rtcp_packet/rpsi.h', |
Danil Chapovalov | fc47ed6 | 2015-12-07 14:46:35 +0100 | [diff] [blame] | 74 | 'source/rtcp_packet/rrtr.cc', |
| 75 | 'source/rtcp_packet/rrtr.h', |
danilchap | a8890a5 | 2015-12-22 03:43:04 -0800 | [diff] [blame] | 76 | 'source/rtcp_packet/rtpfb.cc', |
| 77 | 'source/rtcp_packet/rtpfb.h', |
Danil Chapovalov | 1567d0b | 2016-01-15 17:34:27 +0100 | [diff] [blame] | 78 | 'source/rtcp_packet/sdes.cc', |
| 79 | 'source/rtcp_packet/sdes.h', |
danilchap | 34ed2b9 | 2016-01-18 02:43:32 -0800 | [diff] [blame] | 80 | 'source/rtcp_packet/sender_report.cc', |
| 81 | 'source/rtcp_packet/sender_report.h', |
danilchap | 92e677a | 2016-01-12 10:04:52 -0800 | [diff] [blame] | 82 | 'source/rtcp_packet/sli.cc', |
| 83 | 'source/rtcp_packet/sli.h', |
sprang | b84ad63 | 2016-11-01 02:50:12 -0700 | [diff] [blame] | 84 | 'source/rtcp_packet/target_bitrate.cc', |
| 85 | 'source/rtcp_packet/target_bitrate.h', |
danilchap | a92d6be | 2016-02-04 07:33:39 -0800 | [diff] [blame] | 86 | 'source/rtcp_packet/tmmb_item.cc', |
| 87 | 'source/rtcp_packet/tmmb_item.h', |
danilchap | ef3d805 | 2016-01-11 03:31:08 -0800 | [diff] [blame] | 88 | 'source/rtcp_packet/tmmbn.cc', |
| 89 | 'source/rtcp_packet/tmmbn.h', |
danilchap | 7e8145f | 2016-01-11 11:49:19 -0800 | [diff] [blame] | 90 | 'source/rtcp_packet/tmmbr.cc', |
| 91 | 'source/rtcp_packet/tmmbr.h', |
Erik Språng | a3b8769 | 2015-07-29 10:46:54 +0200 | [diff] [blame] | 92 | 'source/rtcp_packet/transport_feedback.cc', |
| 93 | 'source/rtcp_packet/transport_feedback.h', |
danilchap | 91941ae | 2015-12-15 07:06:36 -0800 | [diff] [blame] | 94 | 'source/rtcp_packet/voip_metric.cc', |
| 95 | 'source/rtcp_packet/voip_metric.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 96 | 'source/rtcp_receiver.cc', |
| 97 | 'source/rtcp_receiver.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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', |
danilchap | 1edb7ab | 2016-04-20 05:25:10 -0700 | [diff] [blame] | 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', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 111 | 'source/rtp_receiver_impl.cc', |
| 112 | 'source/rtp_receiver_impl.h', |
danilchap | 1edb7ab | 2016-04-20 05:25:10 -0700 | [diff] [blame] | 113 | 'source/rtp_rtcp_config.h', |
| 114 | 'source/rtp_rtcp_impl.cc', |
| 115 | 'source/rtp_rtcp_impl.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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', |
Danil Chapovalov | c1e55c7 | 2016-03-09 15:14:35 +0100 | [diff] [blame] | 122 | 'source/time_util.cc', |
| 123 | 'source/time_util.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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', |
brandtr | 0496de2 | 2016-10-03 00:43:25 -0700 | [diff] [blame] | 136 | 'source/flexfec_header_reader_writer.cc', |
| 137 | 'source/flexfec_header_reader_writer.h', |
brandtr | c295e00 | 2016-11-03 09:22:33 -0700 | [diff] [blame] | 138 | 'source/flexfec_sender.cc', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 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', |
asapersson | f38ea3c | 2015-07-28 04:02:54 -0700 | [diff] [blame] | 159 | 'source/rtp_format_vp9.cc', |
| 160 | 'source/rtp_format_vp9.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 161 | 'source/rtp_format_video_generic.cc', |
| 162 | 'source/rtp_format_video_generic.h', |
brandtr | 869e7cd | 2016-10-31 05:27:07 -0700 | [diff] [blame] | 163 | 'source/ulpfec_generator.cc', |
| 164 | 'source/ulpfec_generator.h', |
Rasmus Brandt | 78db158 | 2016-09-21 09:19:34 +0200 | [diff] [blame] | 165 | 'source/ulpfec_header_reader_writer.cc', |
| 166 | 'source/ulpfec_header_reader_writer.h', |
brandtr | d55c3f6 | 2016-10-31 04:51:33 -0700 | [diff] [blame] | 167 | 'source/ulpfec_receiver_impl.cc', |
| 168 | 'source/ulpfec_receiver_impl.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 169 | 'source/vp8_partition_aggregator.cc', |
| 170 | 'source/vp8_partition_aggregator.h', |
| 171 | # Mocks |
| 172 | 'mocks/mock_rtp_rtcp.h', |
brandtr | a8b3855 | 2016-10-10 16:44:57 -0700 | [diff] [blame] | 173 | 'mocks/mock_recovered_packet_receiver.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 174 | 'source/mock/mock_rtp_payload_strategy.h', |
gaetano.carlucci | 52a5703 | 2016-09-14 05:04:36 -0700 | [diff] [blame] | 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 | ], |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 183 | # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
| 184 | 'msvs_disabled_warnings': [ 4267, ], |
| 185 | }, |
| 186 | ], |
| 187 | } |