67 lines
1.7 KiB
Python
67 lines
1.7 KiB
Python
# GYP file for any MPD generation targets.
|
|
|
|
{
|
|
'target_defaults': {
|
|
'include_dirs': [
|
|
'..',
|
|
],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'media_info_proto',
|
|
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'base/media_info.proto',
|
|
],
|
|
'variables': {
|
|
'proto_in_dir': 'base',
|
|
'proto_out_dir': 'mpd/base',
|
|
},
|
|
'includes': ['../build/protoc.gypi'],
|
|
'dependencies': [
|
|
# This target needs to depend on 'protobuf_full_do_not_use' to generate
|
|
# non-LITE (full) protobuf. We need full protobuf to serialize and
|
|
# deserialize human readable protobuf messages.
|
|
'../third_party/protobuf/protobuf.gyp:protobuf_full_do_not_use',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'mpd_builder',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'base/content_protection_element.h',
|
|
'base/mpd_builder.cc',
|
|
'base/mpd_builder.h',
|
|
'base/mpd_utils.cc',
|
|
'base/mpd_utils.h',
|
|
'base/xml/scoped_xml_ptr.h',
|
|
'base/xml/xml_node.cc',
|
|
'base/xml/xml_node.h',
|
|
],
|
|
'dependencies': [
|
|
'../base/base.gyp:base',
|
|
'../third_party/libxml/libxml.gyp:libxml',
|
|
'media_info_proto',
|
|
],
|
|
'export_dependent_settings': [
|
|
'../third_party/libxml/libxml.gyp:libxml',
|
|
'media_info_proto',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'mpd_unittest',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'base/mpd_builder_unittest.cc',
|
|
],
|
|
'dependencies': [
|
|
'../base/base.gyp:base',
|
|
'../base/base.gyp:run_all_unittests',
|
|
'../testing/gtest.gyp:gtest',
|
|
'mpd_builder',
|
|
],
|
|
},
|
|
],
|
|
}
|