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 10 matching lines...) Expand all Loading... |
21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', | 21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 # interfaces | 24 # interfaces |
25 'include/video_coding.h', | 25 'include/video_coding.h', |
26 'include/video_coding_defines.h', | 26 'include/video_coding_defines.h', |
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', | |
32 'decoding_state.h', | 31 'decoding_state.h', |
33 'encoded_frame.h', | 32 'encoded_frame.h', |
34 'fec_tables_xor.h', | 33 'fec_tables_xor.h', |
35 'frame_buffer.h', | 34 'frame_buffer.h', |
36 'frame_object.h', | 35 'frame_object.h', |
37 'generic_decoder.h', | 36 'generic_decoder.h', |
38 'generic_encoder.h', | 37 'generic_encoder.h', |
39 'histogram.h', | 38 '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', | 47 'nack_module.h', |
49 'packet.h', | 48 'packet.h', |
50 'packet_buffer.h', | 49 'packet_buffer.h', |
51 'percentile_filter.h', | 50 'percentile_filter.h', |
52 'qm_select_data.h', | |
53 'qm_select.h', | |
54 'receiver.h', | 51 'receiver.h', |
55 'rtt_filter.h', | 52 'rtt_filter.h', |
56 'session_info.h', | 53 'session_info.h', |
57 'timestamp_map.h', | 54 'timestamp_map.h', |
58 'timing.h', | 55 'timing.h', |
59 'video_coding_impl.h', | 56 'video_coding_impl.h', |
60 | 57 |
61 # sources | 58 # sources |
62 'codec_database.cc', | 59 'codec_database.cc', |
63 'codec_timer.cc', | 60 'codec_timer.cc', |
64 'content_metrics_processing.cc', | |
65 'decoding_state.cc', | 61 'decoding_state.cc', |
66 'encoded_frame.cc', | 62 'encoded_frame.cc', |
67 'frame_buffer.cc', | 63 'frame_buffer.cc', |
68 'frame_object.cc', | 64 'frame_object.cc', |
69 'generic_decoder.cc', | 65 'generic_decoder.cc', |
70 'generic_encoder.cc', | 66 'generic_encoder.cc', |
71 'inter_frame_delay.cc', | 67 'inter_frame_delay.cc', |
72 'histogram.cc', | 68 'histogram.cc', |
73 'jitter_buffer.cc', | 69 'jitter_buffer.cc', |
74 'jitter_estimator.cc', | 70 'jitter_estimator.cc', |
75 'media_opt_util.cc', | 71 'media_opt_util.cc', |
76 'media_optimization.cc', | 72 'media_optimization.cc', |
77 'nack_module.cc', | 73 'nack_module.cc', |
78 'packet.cc', | 74 'packet.cc', |
79 'packet_buffer.cc', | 75 'packet_buffer.cc', |
80 'percentile_filter.cc', | 76 'percentile_filter.cc', |
81 'qm_select.cc', | |
82 'receiver.cc', | 77 'receiver.cc', |
83 'rtt_filter.cc', | 78 'rtt_filter.cc', |
84 'session_info.cc', | 79 'session_info.cc', |
85 'timestamp_map.cc', | 80 'timestamp_map.cc', |
86 'timing.cc', | 81 'timing.cc', |
87 'video_coding_impl.cc', | 82 'video_coding_impl.cc', |
88 'video_sender.cc', | 83 'video_sender.cc', |
89 'video_receiver.cc', | 84 'video_receiver.cc', |
90 ], # source | 85 ], # source |
91 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 86 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
92 'msvs_disabled_warnings': [ 4267, ], | 87 'msvs_disabled_warnings': [ 4267, ], |
93 }, | 88 }, |
94 ], | 89 ], |
95 } | 90 } |
OLD | NEW |