OLD | NEW |
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': [ |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'source/rtp_receiver_audio.h', | 128 'source/rtp_receiver_audio.h', |
129 'source/rtp_sender_audio.cc', | 129 'source/rtp_sender_audio.cc', |
130 'source/rtp_sender_audio.h', | 130 'source/rtp_sender_audio.h', |
131 # Video Files | 131 # Video Files |
132 'source/fec_private_tables_random.h', | 132 'source/fec_private_tables_random.h', |
133 'source/fec_private_tables_bursty.h', | 133 'source/fec_private_tables_bursty.h', |
134 'source/forward_error_correction.cc', | 134 'source/forward_error_correction.cc', |
135 'source/forward_error_correction.h', | 135 'source/forward_error_correction.h', |
136 'source/forward_error_correction_internal.cc', | 136 'source/forward_error_correction_internal.cc', |
137 'source/forward_error_correction_internal.h', | 137 'source/forward_error_correction_internal.h', |
138 'source/h264_bitstream_parser.cc', | 138 'source/h264/bitstream_parser.cc', |
139 'source/h264_bitstream_parser.h', | 139 'source/h264/bitstream_parser.h', |
140 'source/h264_sps_parser.cc', | 140 'source/h264/sps_vui_rewriter.cc', |
141 'source/h264_sps_parser.h', | 141 'source/h264/sps_vui_rewriter.h', |
| 142 'source/h264/h264_common.cc', |
| 143 'source/h264/h264_common.h', |
| 144 'source/h264/pps_parser.cc', |
| 145 'source/h264/pps_parser.h', |
| 146 'source/h264/sps_parser.cc', |
| 147 'source/h264/sps_parser.h', |
142 'source/producer_fec.cc', | 148 'source/producer_fec.cc', |
143 'source/producer_fec.h', | 149 'source/producer_fec.h', |
144 'source/rtp_packet_history.cc', | 150 'source/rtp_packet_history.cc', |
145 'source/rtp_packet_history.h', | 151 'source/rtp_packet_history.h', |
146 'source/rtp_payload_registry.cc', | 152 'source/rtp_payload_registry.cc', |
147 'source/rtp_receiver_strategy.cc', | 153 'source/rtp_receiver_strategy.cc', |
148 'source/rtp_receiver_strategy.h', | 154 'source/rtp_receiver_strategy.h', |
149 'source/rtp_receiver_video.cc', | 155 'source/rtp_receiver_video.cc', |
150 'source/rtp_receiver_video.h', | 156 'source/rtp_receiver_video.h', |
151 'source/rtp_sender_video.cc', | 157 'source/rtp_sender_video.cc', |
(...skipping 13 matching lines...) Expand all Loading... |
165 'source/vp8_partition_aggregator.h', | 171 'source/vp8_partition_aggregator.h', |
166 # Mocks | 172 # Mocks |
167 'mocks/mock_rtp_rtcp.h', | 173 'mocks/mock_rtp_rtcp.h', |
168 'source/mock/mock_rtp_payload_strategy.h', | 174 'source/mock/mock_rtp_payload_strategy.h', |
169 ], # source | 175 ], # source |
170 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 176 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
171 'msvs_disabled_warnings': [ 4267, ], | 177 'msvs_disabled_warnings': [ 4267, ], |
172 }, | 178 }, |
173 ], | 179 ], |
174 } | 180 } |
OLD | NEW |