blob: 515c6bcb3cdb82f875c796cf3b366fef8b6aa548 [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
Henrik Kjellander2557b862015-11-18 22:00:21 +010025 'include/video_coding.h',
26 'include/video_coding_defines.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000027
28 # headers
Henrik Kjellander2557b862015-11-18 22:00:21 +010029 'codec_database.h',
30 'codec_timer.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010031 'decoding_state.h',
32 'encoded_frame.h',
33 'fec_tables_xor.h',
34 'frame_buffer.h',
philipelc707ab72016-04-01 02:01:54 -070035 'frame_object.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010036 'generic_decoder.h',
37 'generic_encoder.h',
philipel5ab4c6d2016-03-08 03:36:15 -080038 'histogram.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010039 'inter_frame_delay.h',
40 'internal_defines.h',
41 'jitter_buffer.h',
42 'jitter_buffer_common.h',
43 'jitter_estimator.h',
44 'media_opt_util.h',
45 'media_optimization.h',
46 'nack_fec_tables.h',
philipel5ab4c6d2016-03-08 03:36:15 -080047 'nack_module.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010048 'packet.h',
philipelc707ab72016-04-01 02:01:54 -070049 'packet_buffer.h',
magjed2943f012016-03-22 05:12:09 -070050 'percentile_filter.h',
Henrik Kjellander2557b862015-11-18 22:00:21 +010051 'receiver.h',
52 'rtt_filter.h',
53 'session_info.h',
54 'timestamp_map.h',
55 'timing.h',
56 'video_coding_impl.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000057
58 # sources
Henrik Kjellander2557b862015-11-18 22:00:21 +010059 'codec_database.cc',
60 'codec_timer.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010061 'decoding_state.cc',
62 'encoded_frame.cc',
63 'frame_buffer.cc',
philipelc707ab72016-04-01 02:01:54 -070064 'frame_object.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010065 'generic_decoder.cc',
66 'generic_encoder.cc',
67 'inter_frame_delay.cc',
philipel5ab4c6d2016-03-08 03:36:15 -080068 'histogram.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010069 'jitter_buffer.cc',
70 'jitter_estimator.cc',
71 'media_opt_util.cc',
72 'media_optimization.cc',
philipel5ab4c6d2016-03-08 03:36:15 -080073 'nack_module.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010074 'packet.cc',
philipelc707ab72016-04-01 02:01:54 -070075 'packet_buffer.cc',
magjed2943f012016-03-22 05:12:09 -070076 'percentile_filter.cc',
Henrik Kjellander2557b862015-11-18 22:00:21 +010077 'receiver.cc',
78 'rtt_filter.cc',
79 'session_info.cc',
80 'timestamp_map.cc',
81 'timing.cc',
82 'video_coding_impl.cc',
83 'video_sender.cc',
84 'video_receiver.cc',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000085 ], # source
86 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
87 'msvs_disabled_warnings': [ 4267, ],
88 },
89 ],
90}