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': [ |
11 { | 11 { |
12 'target_name': 'webrtc_video_coding', | 12 'target_name': 'webrtc_video_coding', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'webrtc_h264', | 15 'webrtc_h264', |
16 'webrtc_i420', | 16 'webrtc_i420', |
17 '<(webrtc_root)/common_video/common_video.gyp:common_video', | 17 '<(webrtc_root)/common_video/common_video.gyp:common_video', |
18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', | 18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi
deo_coding_utility', |
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', | 20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', |
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/bitrate_adjuster.h', | |
26 'include/video_coding.h', | 25 'include/video_coding.h', |
27 'include/video_coding_defines.h', | 26 'include/video_coding_defines.h', |
28 | 27 |
29 # headers | 28 # headers |
30 'codec_database.h', | 29 'codec_database.h', |
31 'codec_timer.h', | 30 'codec_timer.h', |
32 'content_metrics_processing.h', | 31 'content_metrics_processing.h', |
33 'decoding_state.h', | 32 'decoding_state.h', |
34 'encoded_frame.h', | 33 'encoded_frame.h', |
35 'fec_tables_xor.h', | 34 'fec_tables_xor.h', |
(...skipping 17 matching lines...) Expand all Loading... |
53 'qm_select_data.h', | 52 'qm_select_data.h', |
54 'qm_select.h', | 53 'qm_select.h', |
55 'receiver.h', | 54 'receiver.h', |
56 'rtt_filter.h', | 55 'rtt_filter.h', |
57 'session_info.h', | 56 'session_info.h', |
58 'timestamp_map.h', | 57 'timestamp_map.h', |
59 'timing.h', | 58 'timing.h', |
60 'video_coding_impl.h', | 59 'video_coding_impl.h', |
61 | 60 |
62 # sources | 61 # sources |
63 'bitrate_adjuster.cc', | |
64 'codec_database.cc', | 62 'codec_database.cc', |
65 'codec_timer.cc', | 63 'codec_timer.cc', |
66 'content_metrics_processing.cc', | 64 'content_metrics_processing.cc', |
67 'decoding_state.cc', | 65 'decoding_state.cc', |
68 'encoded_frame.cc', | 66 'encoded_frame.cc', |
69 'frame_buffer.cc', | 67 'frame_buffer.cc', |
70 'frame_object.cc', | 68 'frame_object.cc', |
71 'generic_decoder.cc', | 69 'generic_decoder.cc', |
72 'generic_encoder.cc', | 70 'generic_encoder.cc', |
73 'inter_frame_delay.cc', | 71 'inter_frame_delay.cc', |
(...skipping 14 matching lines...) Expand all Loading... |
88 'timing.cc', | 86 'timing.cc', |
89 'video_coding_impl.cc', | 87 'video_coding_impl.cc', |
90 'video_sender.cc', | 88 'video_sender.cc', |
91 'video_receiver.cc', | 89 'video_receiver.cc', |
92 ], # source | 90 ], # source |
93 # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 91 # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
94 'msvs_disabled_warnings': [ 4267, ], | 92 'msvs_disabled_warnings': [ 4267, ], |
95 }, | 93 }, |
96 ], | 94 ], |
97 } | 95 } |
OLD | NEW |