andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 1 | # 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 Chin | 71f6f44 | 2015-06-29 14:34:58 -0700 | [diff] [blame] | 15 | 'webrtc_h264', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 16 | '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 Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 25 | 'include/video_coding.h', |
| 26 | 'include/video_coding_defines.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 27 | |
| 28 | # headers |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 29 | 'codec_database.h', |
| 30 | 'codec_timer.h', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 31 | 'decoding_state.h', |
| 32 | 'encoded_frame.h', |
| 33 | 'fec_tables_xor.h', |
| 34 | 'frame_buffer.h', |
philipel | be7a9e5 | 2016-05-19 12:19:35 +0200 | [diff] [blame] | 35 | 'frame_buffer2.h', |
philipel | c707ab7 | 2016-04-01 02:01:54 -0700 | [diff] [blame] | 36 | 'frame_object.h', |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 37 | 'rtp_frame_reference_finder.h', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 38 | 'generic_decoder.h', |
| 39 | 'generic_encoder.h', |
philipel | 5ab4c6d | 2016-03-08 03:36:15 -0800 | [diff] [blame] | 40 | 'histogram.h', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 41 | 'inter_frame_delay.h', |
| 42 | 'internal_defines.h', |
| 43 | 'jitter_buffer.h', |
| 44 | 'jitter_buffer_common.h', |
| 45 | 'jitter_estimator.h', |
| 46 | 'media_opt_util.h', |
| 47 | 'media_optimization.h', |
| 48 | 'nack_fec_tables.h', |
philipel | 5ab4c6d | 2016-03-08 03:36:15 -0800 | [diff] [blame] | 49 | 'nack_module.h', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 50 | 'packet.h', |
philipel | c707ab7 | 2016-04-01 02:01:54 -0700 | [diff] [blame] | 51 | 'packet_buffer.h', |
magjed | 2943f01 | 2016-03-22 05:12:09 -0700 | [diff] [blame] | 52 | 'percentile_filter.h', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 53 | 'receiver.h', |
| 54 | 'rtt_filter.h', |
| 55 | 'session_info.h', |
| 56 | 'timestamp_map.h', |
| 57 | 'timing.h', |
| 58 | 'video_coding_impl.h', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 59 | |
| 60 | # sources |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 61 | 'codec_database.cc', |
| 62 | 'codec_timer.cc', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 63 | 'decoding_state.cc', |
| 64 | 'encoded_frame.cc', |
| 65 | 'frame_buffer.cc', |
philipel | be7a9e5 | 2016-05-19 12:19:35 +0200 | [diff] [blame] | 66 | 'frame_buffer2.cc', |
philipel | c707ab7 | 2016-04-01 02:01:54 -0700 | [diff] [blame] | 67 | 'frame_object.cc', |
philipel | 02447bc | 2016-05-13 06:01:03 -0700 | [diff] [blame] | 68 | 'rtp_frame_reference_finder.cc', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 69 | 'generic_decoder.cc', |
| 70 | 'generic_encoder.cc', |
| 71 | 'inter_frame_delay.cc', |
philipel | 5ab4c6d | 2016-03-08 03:36:15 -0800 | [diff] [blame] | 72 | 'histogram.cc', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 73 | 'jitter_buffer.cc', |
| 74 | 'jitter_estimator.cc', |
| 75 | 'media_opt_util.cc', |
| 76 | 'media_optimization.cc', |
philipel | 5ab4c6d | 2016-03-08 03:36:15 -0800 | [diff] [blame] | 77 | 'nack_module.cc', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 78 | 'packet.cc', |
philipel | c707ab7 | 2016-04-01 02:01:54 -0700 | [diff] [blame] | 79 | 'packet_buffer.cc', |
magjed | 2943f01 | 2016-03-22 05:12:09 -0700 | [diff] [blame] | 80 | 'percentile_filter.cc', |
Henrik Kjellander | 2557b86 | 2015-11-18 22:00:21 +0100 | [diff] [blame] | 81 | 'receiver.cc', |
| 82 | 'rtt_filter.cc', |
| 83 | 'session_info.cc', |
| 84 | 'timestamp_map.cc', |
| 85 | 'timing.cc', |
| 86 | 'video_coding_impl.cc', |
| 87 | 'video_sender.cc', |
| 88 | 'video_receiver.cc', |
andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame] | 89 | ], # source |
| 90 | # TODO(jschuh): Bug 1348: fix size_t to int truncations. |
| 91 | 'msvs_disabled_warnings': [ 4267, ], |
| 92 | }, |
| 93 | ], |
| 94 | } |