2014-02-14 23:21:05 +00:00
|
|
|
# Copyright 2014 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
|
2014-02-13 23:56:38 +00:00
|
|
|
|
|
|
|
{
|
2014-07-02 16:58:40 +00:00
|
|
|
'includes': [
|
|
|
|
'../../common.gypi',
|
|
|
|
],
|
2014-02-13 23:56:38 +00:00
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'media_event',
|
|
|
|
'type': '<(component)',
|
|
|
|
'sources': [
|
2016-03-28 07:52:58 +00:00
|
|
|
'hls_notify_muxer_listener.cc',
|
|
|
|
'hls_notify_muxer_listener.h',
|
2014-05-16 21:03:52 +00:00
|
|
|
'mpd_notify_muxer_listener.cc',
|
|
|
|
'mpd_notify_muxer_listener.h',
|
2014-02-13 23:56:38 +00:00
|
|
|
'muxer_listener.h',
|
2014-05-16 21:03:52 +00:00
|
|
|
'muxer_listener_internal.cc',
|
|
|
|
'muxer_listener_internal.h',
|
2014-02-13 23:56:38 +00:00
|
|
|
'vod_media_info_dump_muxer_listener.cc',
|
|
|
|
'vod_media_info_dump_muxer_listener.h',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'../../mpd/mpd.gyp:media_info_proto',
|
|
|
|
# Depends on full protobuf to read/write with TextFormat.
|
|
|
|
'../../third_party/protobuf/protobuf.gyp:protobuf_full_do_not_use',
|
2016-01-15 14:57:20 +00:00
|
|
|
'../base/media_base.gyp:media_base',
|
2016-05-25 18:03:17 +00:00
|
|
|
'../codecs/codecs.gyp:codecs',
|
2014-10-03 05:17:54 +00:00
|
|
|
'../file/file.gyp:file',
|
2014-02-13 23:56:38 +00:00
|
|
|
],
|
|
|
|
},
|
2016-04-16 22:58:47 +00:00
|
|
|
{
|
|
|
|
'target_name': 'mock_muxer_listener',
|
|
|
|
'type': '<(component)',
|
|
|
|
'sources': [
|
|
|
|
'mock_muxer_listener.cc',
|
|
|
|
'mock_muxer_listener.h',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'../../testing/gmock.gyp:gmock',
|
|
|
|
'media_event',
|
|
|
|
],
|
|
|
|
},
|
2014-02-13 23:56:38 +00:00
|
|
|
{
|
|
|
|
'target_name': 'media_event_unittest',
|
|
|
|
'type': '<(gtest_target_type)',
|
|
|
|
'sources': [
|
2016-03-28 07:52:58 +00:00
|
|
|
'hls_notify_muxer_listener_unittest.cc',
|
2015-07-30 00:42:11 +00:00
|
|
|
'mpd_notify_muxer_listener_unittest.cc',
|
|
|
|
'muxer_listener_test_helper.cc',
|
|
|
|
'muxer_listener_test_helper.h',
|
2014-02-13 23:56:38 +00:00
|
|
|
'vod_media_info_dump_muxer_listener_unittest.cc',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'../../base/base.gyp:base',
|
|
|
|
'../../mpd/mpd.gyp:media_info_proto',
|
2015-09-14 19:53:32 +00:00
|
|
|
'../../mpd/mpd.gyp:mpd_mocks',
|
2015-07-30 00:42:11 +00:00
|
|
|
'../../testing/gmock.gyp:gmock',
|
2014-02-13 23:56:38 +00:00
|
|
|
'../../testing/gtest.gyp:gtest',
|
|
|
|
# Depends on full protobuf to read/write with TextFormat.
|
|
|
|
'../../third_party/protobuf/protobuf.gyp:protobuf_full_do_not_use',
|
2016-01-20 01:46:31 +00:00
|
|
|
'../test/media_test.gyp:run_tests_with_atexit_manager',
|
2014-02-13 23:56:38 +00:00
|
|
|
'media_event',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|