blob: 02c9c6b32b199c8e2f8951ec326e42044860a077 [file] [log] [blame]
andresp@webrtc.org749c6022015-02-25 11:50:17 +00001# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
10 'targets': [
11 {
12 'target_name': 'webrtc_video_coding',
13 'type': 'static_library',
14 'dependencies': [
Zeke Chin71f6f442015-06-29 14:34:58 -070015 'webrtc_h264',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000016 'webrtc_i420',
17 '<(webrtc_root)/common_video/common_video.gyp:common_video',
18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:video_coding_utility',
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8',
21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9',
22 ],
23 'sources': [
24 # interfaces
tkchinf75d0082016-02-23 22:49:42 -080025 'include/bitrate_adjuster.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010026 'include/video_coding.h',
27 'include/video_coding_defines.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000028
29 # headers
Henrik Kjellander2557b862015-11-18 22:00:21 +010030 'codec_database.h',
31 'codec_timer.h',
32 'content_metrics_processing.h',
33 'decoding_state.h',
34 'encoded_frame.h',
35 'fec_tables_xor.h',
36 'frame_buffer.h',
37 'generic_decoder.h',
38 'generic_encoder.h',
philipel5ab4c6d2016-03-08 03:36:15 -080039 'histogram.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010040 'inter_frame_delay.h',
41 'internal_defines.h',
42 'jitter_buffer.h',
43 'jitter_buffer_common.h',
44 'jitter_estimator.h',
45 'media_opt_util.h',
46 'media_optimization.h',
47 'nack_fec_tables.h',
philipel5ab4c6d2016-03-08 03:36:15 -080048 'nack_module.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010049 'packet.h',
50 'qm_select_data.h',
51 'qm_select.h',
52 'receiver.h',
53 'rtt_filter.h',
54 'session_info.h',
55 'timestamp_map.h',
56 'timing.h',
57 'video_coding_impl.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000058
59 # sources
tkchinf75d0082016-02-23 22:49:42 -080060 'bitrate_adjuster.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010061 'codec_database.cc',
62 'codec_timer.cc',
63 'content_metrics_processing.cc',
64 'decoding_state.cc',
65 'encoded_frame.cc',
66 'frame_buffer.cc',
67 'generic_decoder.cc',
68 'generic_encoder.cc',
69 'inter_frame_delay.cc',
philipel5ab4c6d2016-03-08 03:36:15 -080070 'histogram.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010071 'jitter_buffer.cc',
72 'jitter_estimator.cc',
73 'media_opt_util.cc',
74 'media_optimization.cc',
philipel5ab4c6d2016-03-08 03:36:15 -080075 'nack_module.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010076 'packet.cc',
77 'qm_select.cc',
78 'receiver.cc',
79 'rtt_filter.cc',
80 'session_info.cc',
81 'timestamp_map.cc',
82 'timing.cc',
83 'video_coding_impl.cc',
84 'video_sender.cc',
85 'video_receiver.cc',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000086 ], # source
87 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
88 'msvs_disabled_warnings': [ 4267, ],
89 },
90 ],
91}