OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 # headers | 28 # headers |
29 'codec_database.h', | 29 'codec_database.h', |
30 'codec_timer.h', | 30 'codec_timer.h', |
31 'content_metrics_processing.h', | 31 'content_metrics_processing.h', |
32 'decoding_state.h', | 32 'decoding_state.h', |
33 'encoded_frame.h', | 33 'encoded_frame.h', |
34 'fec_tables_xor.h', | 34 'fec_tables_xor.h', |
35 'frame_buffer.h', | 35 'frame_buffer.h', |
36 'frame_object.h', | 36 'frame_object.h', |
| 37 'rtp_frame_reference_finder.h', |
37 'generic_decoder.h', | 38 'generic_decoder.h', |
38 'generic_encoder.h', | 39 'generic_encoder.h', |
39 'histogram.h', | 40 'histogram.h', |
40 'inter_frame_delay.h', | 41 'inter_frame_delay.h', |
41 'internal_defines.h', | 42 'internal_defines.h', |
42 'jitter_buffer.h', | 43 'jitter_buffer.h', |
43 'jitter_buffer_common.h', | 44 'jitter_buffer_common.h', |
44 'jitter_estimator.h', | 45 'jitter_estimator.h', |
45 'media_opt_util.h', | 46 'media_opt_util.h', |
46 'media_optimization.h', | 47 'media_optimization.h', |
(...skipping 12 matching lines...) Expand all Loading... |
59 'video_coding_impl.h', | 60 'video_coding_impl.h', |
60 | 61 |
61 # sources | 62 # sources |
62 'codec_database.cc', | 63 'codec_database.cc', |
63 'codec_timer.cc', | 64 'codec_timer.cc', |
64 'content_metrics_processing.cc', | 65 'content_metrics_processing.cc', |
65 'decoding_state.cc', | 66 'decoding_state.cc', |
66 'encoded_frame.cc', | 67 'encoded_frame.cc', |
67 'frame_buffer.cc', | 68 'frame_buffer.cc', |
68 'frame_object.cc', | 69 'frame_object.cc', |
| 70 'rtp_frame_reference_finder.cc', |
69 'generic_decoder.cc', | 71 'generic_decoder.cc', |
70 'generic_encoder.cc', | 72 'generic_encoder.cc', |
71 'inter_frame_delay.cc', | 73 'inter_frame_delay.cc', |
72 'histogram.cc', | 74 'histogram.cc', |
73 'jitter_buffer.cc', | 75 'jitter_buffer.cc', |
74 'jitter_estimator.cc', | 76 'jitter_estimator.cc', |
75 'media_opt_util.cc', | 77 'media_opt_util.cc', |
76 'media_optimization.cc', | 78 'media_optimization.cc', |
77 'nack_module.cc', | 79 'nack_module.cc', |
78 'packet.cc', | 80 'packet.cc', |
79 'packet_buffer.cc', | 81 'packet_buffer.cc', |
80 'percentile_filter.cc', | 82 'percentile_filter.cc', |
81 'qm_select.cc', | 83 'qm_select.cc', |
82 'receiver.cc', | 84 'receiver.cc', |
83 'rtt_filter.cc', | 85 'rtt_filter.cc', |
84 'session_info.cc', | 86 'session_info.cc', |
85 'timestamp_map.cc', | 87 'timestamp_map.cc', |
86 'timing.cc', | 88 'timing.cc', |
87 'video_coding_impl.cc', | 89 'video_coding_impl.cc', |
88 'video_sender.cc', | 90 'video_sender.cc', |
89 'video_receiver.cc', | 91 'video_receiver.cc', |
90 ], # source | 92 ], # source |
91 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 93 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
92 'msvs_disabled_warnings': [ 4267, ], | 94 'msvs_disabled_warnings': [ 4267, ], |
93 }, | 95 }, |
94 ], | 96 ], |
95 } | 97 } |
OLD | NEW |