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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 # Audio Files | 125 # Audio Files |
126 'source/dtmf_queue.cc', | 126 'source/dtmf_queue.cc', |
127 'source/dtmf_queue.h', | 127 'source/dtmf_queue.h', |
128 'source/rtp_receiver_audio.cc', | 128 'source/rtp_receiver_audio.cc', |
129 'source/rtp_receiver_audio.h', | 129 'source/rtp_receiver_audio.h', |
130 'source/rtp_sender_audio.cc', | 130 'source/rtp_sender_audio.cc', |
131 'source/rtp_sender_audio.h', | 131 'source/rtp_sender_audio.h', |
132 # Video Files | 132 # Video Files |
133 'source/fec_private_tables_random.h', | 133 'source/fec_private_tables_random.h', |
134 'source/fec_private_tables_bursty.h', | 134 'source/fec_private_tables_bursty.h', |
| 135 'source/flexfec_header_reader_writer.cc', |
| 136 'source/flexfec_header_reader_writer.h', |
135 'source/forward_error_correction.cc', | 137 'source/forward_error_correction.cc', |
136 'source/forward_error_correction.h', | 138 'source/forward_error_correction.h', |
137 'source/forward_error_correction_internal.cc', | 139 'source/forward_error_correction_internal.cc', |
138 'source/forward_error_correction_internal.h', | 140 'source/forward_error_correction_internal.h', |
139 'source/producer_fec.cc', | 141 'source/producer_fec.cc', |
140 'source/producer_fec.h', | 142 'source/producer_fec.h', |
141 'source/rtp_packet_history.cc', | 143 'source/rtp_packet_history.cc', |
142 'source/rtp_packet_history.h', | 144 'source/rtp_packet_history.h', |
143 'source/rtp_payload_registry.cc', | 145 'source/rtp_payload_registry.cc', |
144 'source/rtp_receiver_strategy.cc', | 146 'source/rtp_receiver_strategy.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
164 'source/vp8_partition_aggregator.h', | 166 'source/vp8_partition_aggregator.h', |
165 # Mocks | 167 # Mocks |
166 'mocks/mock_rtp_rtcp.h', | 168 'mocks/mock_rtp_rtcp.h', |
167 'source/mock/mock_rtp_payload_strategy.h', | 169 'source/mock/mock_rtp_payload_strategy.h', |
168 ], # source | 170 ], # source |
169 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 171 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
170 'msvs_disabled_warnings': [ 4267, ], | 172 'msvs_disabled_warnings': [ 4267, ], |
171 }, | 173 }, |
172 ], | 174 ], |
173 } | 175 } |
OLD | NEW |