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 18 matching lines...) Expand all Loading... |
29 # headers | 29 # headers |
30 'codec_database.h', | 30 'codec_database.h', |
31 'codec_timer.h', | 31 'codec_timer.h', |
32 'content_metrics_processing.h', | 32 'content_metrics_processing.h', |
33 'decoding_state.h', | 33 'decoding_state.h', |
34 'encoded_frame.h', | 34 'encoded_frame.h', |
35 'fec_tables_xor.h', | 35 'fec_tables_xor.h', |
36 'frame_buffer.h', | 36 'frame_buffer.h', |
37 'generic_decoder.h', | 37 'generic_decoder.h', |
38 'generic_encoder.h', | 38 'generic_encoder.h', |
39 'histogram.h', | |
40 'inter_frame_delay.h', | 39 'inter_frame_delay.h', |
41 'internal_defines.h', | 40 'internal_defines.h', |
42 'jitter_buffer.h', | 41 'jitter_buffer.h', |
43 'jitter_buffer_common.h', | 42 'jitter_buffer_common.h', |
44 'jitter_estimator.h', | 43 'jitter_estimator.h', |
45 'media_opt_util.h', | 44 'media_opt_util.h', |
46 'media_optimization.h', | 45 'media_optimization.h', |
47 'nack_fec_tables.h', | 46 'nack_fec_tables.h', |
48 'nack_module.h', | |
49 'packet.h', | 47 'packet.h', |
50 'qm_select_data.h', | 48 'qm_select_data.h', |
51 'qm_select.h', | 49 'qm_select.h', |
52 'receiver.h', | 50 'receiver.h', |
53 'rtt_filter.h', | 51 'rtt_filter.h', |
54 'session_info.h', | 52 'session_info.h', |
55 'timestamp_map.h', | 53 'timestamp_map.h', |
56 'timing.h', | 54 'timing.h', |
57 'video_coding_impl.h', | 55 'video_coding_impl.h', |
58 | 56 |
59 # sources | 57 # sources |
60 'bitrate_adjuster.cc', | 58 'bitrate_adjuster.cc', |
61 'codec_database.cc', | 59 'codec_database.cc', |
62 'codec_timer.cc', | 60 'codec_timer.cc', |
63 'content_metrics_processing.cc', | 61 'content_metrics_processing.cc', |
64 'decoding_state.cc', | 62 'decoding_state.cc', |
65 'encoded_frame.cc', | 63 'encoded_frame.cc', |
66 'frame_buffer.cc', | 64 'frame_buffer.cc', |
67 'generic_decoder.cc', | 65 'generic_decoder.cc', |
68 'generic_encoder.cc', | 66 'generic_encoder.cc', |
69 'inter_frame_delay.cc', | 67 'inter_frame_delay.cc', |
70 'histogram.cc', | |
71 'jitter_buffer.cc', | 68 'jitter_buffer.cc', |
72 'jitter_estimator.cc', | 69 'jitter_estimator.cc', |
73 'media_opt_util.cc', | 70 'media_opt_util.cc', |
74 'media_optimization.cc', | 71 'media_optimization.cc', |
75 'nack_module.cc', | |
76 'packet.cc', | 72 'packet.cc', |
77 'qm_select.cc', | 73 'qm_select.cc', |
78 'receiver.cc', | 74 'receiver.cc', |
79 'rtt_filter.cc', | 75 'rtt_filter.cc', |
80 'session_info.cc', | 76 'session_info.cc', |
81 'timestamp_map.cc', | 77 'timestamp_map.cc', |
82 'timing.cc', | 78 'timing.cc', |
83 'video_coding_impl.cc', | 79 'video_coding_impl.cc', |
84 'video_sender.cc', | 80 'video_sender.cc', |
85 'video_receiver.cc', | 81 'video_receiver.cc', |
86 ], # source | 82 ], # source |
87 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 83 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
88 'msvs_disabled_warnings': [ 4267, ], | 84 'msvs_disabled_warnings': [ 4267, ], |
89 }, | 85 }, |
90 ], | 86 ], |
91 } | 87 } |
OLD | NEW |