shaka-packager/packager/media/formats/webvtt/webvtt.gyp

56 lines
1.5 KiB
Python

# Copyright 2015 Google Inc. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
{
'variables': {
'shaka_code': 1,
},
'targets': [
{
'target_name': 'webvtt',
'type': '<(component)',
'sources': [
'cue.cc',
'cue.h',
'text_readers.cc',
'text_readers.h',
'webvtt_media_parser.cc',
'webvtt_media_parser.h',
'webvtt_parser.cc',
'webvtt_parser.h',
'webvtt_sample_converter.cc',
'webvtt_sample_converter.h',
'webvtt_timestamp.cc',
'webvtt_timestamp.h',
],
'dependencies': [
'../../../base/base.gyp:base',
'../../base/media_base.gyp:media_base',
'../../formats/mp4/mp4.gyp:mp4',
'../../origin/origin.gyp:origin',
],
},
{
'target_name': 'webvtt_unittest',
'type': '<(gtest_target_type)',
'sources': [
'text_readers_unittest.cc',
'webvtt_media_parser_unittest.cc',
'webvtt_parser_unittest.cc',
'webvtt_sample_converter_unittest.cc',
'webvtt_timestamp_unittest.cc',
],
'dependencies': [
'../../../testing/gmock.gyp:gmock',
'../../../testing/gtest.gyp:gtest',
'../../base/media_base.gyp:media_handler_test_base',
'../../test/media_test.gyp:media_test_support',
'webvtt',
]
},
],
}