2014-04-01 21:18:11 +00:00
|
|
|
# Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style
|
2016-05-25 18:03:17 +00:00
|
|
|
# license that can be found in the LICENSE file or at
|
2014-04-01 21:18:11 +00:00
|
|
|
# https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
{
|
2014-07-02 16:58:40 +00:00
|
|
|
'includes': [
|
|
|
|
'../../common.gypi',
|
|
|
|
],
|
2014-04-01 21:18:11 +00:00
|
|
|
'targets': [
|
|
|
|
{
|
2016-05-25 18:03:17 +00:00
|
|
|
'target_name': 'codecs',
|
2014-04-01 21:18:11 +00:00
|
|
|
'type': '<(component)',
|
|
|
|
'sources': [
|
2016-05-25 18:03:17 +00:00
|
|
|
'aac_audio_specific_config.cc',
|
|
|
|
'aac_audio_specific_config.h',
|
2016-05-25 17:33:53 +00:00
|
|
|
'avc_decoder_configuration_record.cc',
|
|
|
|
'avc_decoder_configuration_record.h',
|
|
|
|
'decoder_configuration_record.cc',
|
|
|
|
'decoder_configuration_record.h',
|
2016-02-09 00:22:01 +00:00
|
|
|
'ec3_audio_util.cc',
|
|
|
|
'ec3_audio_util.h',
|
2016-05-25 18:03:17 +00:00
|
|
|
'es_descriptor.cc',
|
|
|
|
'es_descriptor.h',
|
2014-04-18 01:57:31 +00:00
|
|
|
'h264_byte_to_unit_stream_converter.cc',
|
|
|
|
'h264_byte_to_unit_stream_converter.h',
|
2014-04-01 21:18:11 +00:00
|
|
|
'h264_parser.cc',
|
|
|
|
'h264_parser.h',
|
2016-04-01 17:00:49 +00:00
|
|
|
'h265_byte_to_unit_stream_converter.cc',
|
|
|
|
'h265_byte_to_unit_stream_converter.h',
|
2016-02-22 23:32:22 +00:00
|
|
|
'h265_parser.cc',
|
|
|
|
'h265_parser.h',
|
2016-03-14 19:02:21 +00:00
|
|
|
'h26x_bit_reader.cc',
|
|
|
|
'h26x_bit_reader.h',
|
2016-04-01 17:00:49 +00:00
|
|
|
'h26x_byte_to_unit_stream_converter.cc',
|
|
|
|
'h26x_byte_to_unit_stream_converter.h',
|
2016-05-25 17:33:53 +00:00
|
|
|
'hevc_decoder_configuration_record.cc',
|
|
|
|
'hevc_decoder_configuration_record.h',
|
2016-02-19 03:12:52 +00:00
|
|
|
'nal_unit_to_byte_stream_converter.cc',
|
|
|
|
'nal_unit_to_byte_stream_converter.h',
|
2016-02-05 19:08:07 +00:00
|
|
|
'nalu_reader.cc',
|
|
|
|
'nalu_reader.h',
|
2016-05-25 18:03:17 +00:00
|
|
|
'video_slice_header_parser.cc',
|
|
|
|
'video_slice_header_parser.h',
|
2016-05-25 17:33:53 +00:00
|
|
|
'vp_codec_configuration_record.cc',
|
|
|
|
'vp_codec_configuration_record.h',
|
2015-11-20 19:28:45 +00:00
|
|
|
'vp8_parser.cc',
|
|
|
|
'vp8_parser.h',
|
2015-11-11 21:54:45 +00:00
|
|
|
'vp9_parser.cc',
|
|
|
|
'vp9_parser.h',
|
2015-11-20 19:28:45 +00:00
|
|
|
'vpx_parser.h',
|
2014-04-01 21:18:11 +00:00
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'../../base/base.gyp:base',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2016-05-25 18:03:17 +00:00
|
|
|
'target_name': 'codecs_unittest',
|
2014-04-01 21:18:11 +00:00
|
|
|
'type': '<(gtest_target_type)',
|
|
|
|
'sources': [
|
2016-05-25 18:03:17 +00:00
|
|
|
'aac_audio_specific_config_unittest.cc',
|
2016-05-25 17:33:53 +00:00
|
|
|
'avc_decoder_configuration_record_unittest.cc',
|
2016-02-09 00:22:01 +00:00
|
|
|
'ec3_audio_util_unittest.cc',
|
2016-05-25 18:03:17 +00:00
|
|
|
'es_descriptor_unittest.cc',
|
2014-04-18 01:57:31 +00:00
|
|
|
'h264_byte_to_unit_stream_converter_unittest.cc',
|
2014-04-01 21:18:11 +00:00
|
|
|
'h264_parser_unittest.cc',
|
2016-04-01 17:00:49 +00:00
|
|
|
'h265_byte_to_unit_stream_converter_unittest.cc',
|
2016-02-22 23:32:22 +00:00
|
|
|
'h265_parser_unittest.cc',
|
2016-03-14 19:02:21 +00:00
|
|
|
'h26x_bit_reader_unittest.cc',
|
2016-05-25 17:33:53 +00:00
|
|
|
'hevc_decoder_configuration_record_unittest.cc',
|
2016-02-19 03:12:52 +00:00
|
|
|
'nal_unit_to_byte_stream_converter_unittest.cc',
|
2016-02-05 19:08:07 +00:00
|
|
|
'nalu_reader_unittest.cc',
|
2016-05-25 18:03:17 +00:00
|
|
|
'video_slice_header_parser_unittest.cc',
|
2016-05-25 17:33:53 +00:00
|
|
|
'vp_codec_configuration_record_unittest.cc',
|
2015-11-20 19:28:45 +00:00
|
|
|
'vp8_parser_unittest.cc',
|
2015-11-11 21:54:45 +00:00
|
|
|
'vp9_parser_unittest.cc',
|
2014-04-01 21:18:11 +00:00
|
|
|
],
|
|
|
|
'dependencies': [
|
2016-01-15 14:57:20 +00:00
|
|
|
'../../media/base/media_base.gyp:media_base',
|
2015-11-11 21:54:45 +00:00
|
|
|
'../../testing/gmock.gyp:gmock',
|
2014-04-01 21:18:11 +00:00
|
|
|
'../../testing/gtest.gyp:gtest',
|
|
|
|
'../test/media_test.gyp:media_test_support',
|
2016-05-25 18:03:17 +00:00
|
|
|
'codecs',
|
2014-04-01 21:18:11 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|