2012-07-23 16:28:02 +00:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-09-12 12:24:39 +00:00
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
{
|
2012-07-23 16:28:02 +00:00
|
|
|
'includes': [
|
2012-07-27 22:19:16 +00:00
|
|
|
'../../../../build/common.gypi',
|
2012-07-23 16:28:02 +00:00
|
|
|
],
|
2011-07-07 08:21:25 +00:00
|
|
|
'targets': [
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'webrtc_vp8',
|
2013-01-18 23:42:21 +00:00
|
|
|
'type': 'static_library',
|
2011-07-07 08:21:25 +00:00
|
|
|
'dependencies': [
|
2015-02-26 13:59:22 +00:00
|
|
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
2012-09-11 01:34:21 +00:00
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
2013-02-18 14:40:18 +00:00
|
|
|
'<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:video_coding_utility',
|
2015-01-14 09:30:52 +00:00
|
|
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
|
|
|
|
'conditions': [
|
2012-09-10 17:58:21 +00:00
|
|
|
['build_libvpx==1', {
|
|
|
|
|
'dependencies': [
|
2016-03-04 14:39:28 -08:00
|
|
|
'<(libvpx_dir)/libvpx.gyp:libvpx',
|
2012-09-10 17:58:21 +00:00
|
|
|
],
|
|
|
|
|
}],
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
2013-04-17 15:31:40 +00:00
|
|
|
'default_temporal_layers.cc',
|
|
|
|
|
'default_temporal_layers.h',
|
2014-12-09 10:36:40 +00:00
|
|
|
'include/vp8.h',
|
|
|
|
|
'include/vp8_common_types.h',
|
2013-10-04 13:11:31 +00:00
|
|
|
'realtime_temporal_layers.cc',
|
2014-12-09 10:36:40 +00:00
|
|
|
'reference_picture_selection.cc',
|
|
|
|
|
'reference_picture_selection.h',
|
|
|
|
|
'screenshare_layers.cc',
|
|
|
|
|
'screenshare_layers.h',
|
|
|
|
|
'simulcast_encoder_adapter.cc',
|
|
|
|
|
'simulcast_encoder_adapter.h',
|
2013-04-17 15:31:40 +00:00
|
|
|
'temporal_layers.h',
|
2014-12-09 10:36:40 +00:00
|
|
|
'vp8_impl.cc',
|
|
|
|
|
'vp8_impl.h',
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
2013-02-04 10:07:17 +00:00
|
|
|
# Disable warnings to enable Win64 build, issue 1323.
|
|
|
|
|
'msvs_disabled_warnings': [
|
|
|
|
|
4267, # size_t to int truncation.
|
|
|
|
|
],
|
2011-07-07 08:21:25 +00:00
|
|
|
},
|
2011-08-08 12:48:13 +00:00
|
|
|
], # targets
|
2012-05-24 13:23:35 +00:00
|
|
|
'conditions': [
|
|
|
|
|
['include_tests==1', {
|
2011-08-08 12:48:13 +00:00
|
|
|
'targets': [
|
2012-12-07 21:23:02 +00:00
|
|
|
{
|
|
|
|
|
'target_name': 'vp8_coder',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
|
|
|
|
'webrtc_vp8',
|
|
|
|
|
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
|
|
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
2015-01-14 09:30:52 +00:00
|
|
|
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
|
2012-12-07 21:23:02 +00:00
|
|
|
'<(webrtc_root)/test/test.gyp:test_support_main',
|
2013-05-17 11:52:08 +00:00
|
|
|
'<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
|
2012-12-07 21:23:02 +00:00
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
'vp8_sequence_coder.cc',
|
|
|
|
|
],
|
|
|
|
|
},
|
2011-08-08 12:48:13 +00:00
|
|
|
], # targets
|
2012-05-24 13:23:35 +00:00
|
|
|
}], # include_tests
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
|
|
|
|
}
|