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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'jitter_buffer.h', | 42 'jitter_buffer.h', |
43 'jitter_buffer_common.h', | 43 'jitter_buffer_common.h', |
44 'jitter_estimator.h', | 44 'jitter_estimator.h', |
45 'media_opt_util.h', | 45 'media_opt_util.h', |
46 'media_optimization.h', | 46 'media_optimization.h', |
47 'nack_fec_tables.h', | 47 'nack_fec_tables.h', |
48 'nack_module.h', | 48 'nack_module.h', |
49 'packet.h', | 49 'packet.h', |
50 'packet_buffer.h', | 50 'packet_buffer.h', |
51 'percentile_filter.h', | 51 'percentile_filter.h', |
| 52 'protection_bitrate_calculator.h', |
52 'receiver.h', | 53 'receiver.h', |
53 'rtt_filter.h', | 54 'rtt_filter.h', |
54 'session_info.h', | 55 'session_info.h', |
55 'timestamp_map.h', | 56 'timestamp_map.h', |
56 'timing.h', | 57 'timing.h', |
57 'video_coding_impl.h', | 58 'video_coding_impl.h', |
58 | 59 |
59 # sources | 60 # sources |
60 'codec_database.cc', | 61 'codec_database.cc', |
61 'codec_timer.cc', | 62 'codec_timer.cc', |
62 'decoding_state.cc', | 63 'decoding_state.cc', |
63 'encoded_frame.cc', | 64 'encoded_frame.cc', |
64 'frame_buffer.cc', | 65 'frame_buffer.cc', |
65 'frame_object.cc', | 66 'frame_object.cc', |
66 'rtp_frame_reference_finder.cc', | 67 'rtp_frame_reference_finder.cc', |
67 'generic_decoder.cc', | 68 'generic_decoder.cc', |
68 'generic_encoder.cc', | 69 'generic_encoder.cc', |
69 'inter_frame_delay.cc', | 70 'inter_frame_delay.cc', |
70 'histogram.cc', | 71 'histogram.cc', |
71 'jitter_buffer.cc', | 72 'jitter_buffer.cc', |
72 'jitter_estimator.cc', | 73 'jitter_estimator.cc', |
73 'media_opt_util.cc', | 74 'media_opt_util.cc', |
74 'media_optimization.cc', | 75 'media_optimization.cc', |
| 76 'protection_bitrate_calculator.cc', |
75 'nack_module.cc', | 77 'nack_module.cc', |
76 'packet.cc', | 78 'packet.cc', |
77 'packet_buffer.cc', | 79 'packet_buffer.cc', |
78 'percentile_filter.cc', | 80 'percentile_filter.cc', |
79 'receiver.cc', | 81 'receiver.cc', |
80 'rtt_filter.cc', | 82 'rtt_filter.cc', |
81 'session_info.cc', | 83 'session_info.cc', |
82 'timestamp_map.cc', | 84 'timestamp_map.cc', |
83 'timing.cc', | 85 'timing.cc', |
84 'video_coding_impl.cc', | 86 'video_coding_impl.cc', |
85 'video_sender.cc', | 87 'video_sender.cc', |
86 'video_receiver.cc', | 88 'video_receiver.cc', |
87 ], # source | 89 ], # source |
88 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 90 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
89 'msvs_disabled_warnings': [ 4267, ], | 91 'msvs_disabled_warnings': [ 4267, ], |
90 }, | 92 }, |
91 ], | 93 ], |
92 } | 94 } |
OLD | NEW |