104 lines
2.7 KiB
Python
104 lines
2.7 KiB
Python
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'includes': [
|
|
'../../../../common_settings.gypi', # Common settings
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'webrtc_video_coding',
|
|
'type': '<(library)',
|
|
'dependencies': [
|
|
'../../codecs/i420/main/source/i420.gyp:webrtc_i420',
|
|
'../../codecs/vp8/main/source/vp8.gyp:webrtc_vp8',
|
|
'../../../../common_video/vplib/main/source/vplib.gyp:webrtc_vplib',
|
|
'../../../../system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
],
|
|
'include_dirs': [
|
|
'../interface',
|
|
'../../../interface',
|
|
'../../codecs/interface',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../interface',
|
|
'../../codecs/interface',
|
|
],
|
|
},
|
|
'sources': [
|
|
# interfaces
|
|
'../interface/video_coding.h',
|
|
'../interface/video_coding_defines.h',
|
|
|
|
# headers
|
|
'codec_database.h',
|
|
'codec_timer.h',
|
|
'content_metrics_processing.h',
|
|
'encoded_frame.h',
|
|
'er_tables_xor.h',
|
|
'event.h',
|
|
'exp_filter.h',
|
|
'fec_tables_xor.h',
|
|
'frame_buffer.h',
|
|
'frame_dropper.h',
|
|
'frame_list.h',
|
|
'generic_decoder.h',
|
|
'generic_encoder.h',
|
|
'inter_frame_delay.h',
|
|
'internal_defines.h',
|
|
'jitter_buffer_common.h',
|
|
'jitter_buffer.h',
|
|
'jitter_estimator.h',
|
|
'media_opt_util.h',
|
|
'media_optimization.h',
|
|
'nack_fec_tables.h',
|
|
'packet.h',
|
|
'qm_select_data.h',
|
|
'qm_select.h',
|
|
'receiver.h',
|
|
'rtt_filter.h',
|
|
'session_info.h',
|
|
'tick_time.h',
|
|
'timestamp_extrapolator.h',
|
|
'timestamp_map.h',
|
|
'timing.h',
|
|
'video_coding_impl.h',
|
|
|
|
# sources
|
|
'codec_database.cc',
|
|
'codec_timer.cc',
|
|
'content_metrics_processing.cc',
|
|
'encoded_frame.cc',
|
|
'exp_filter.cc',
|
|
'frame_buffer.cc',
|
|
'frame_dropper.cc',
|
|
'frame_list.cc',
|
|
'generic_decoder.cc',
|
|
'generic_encoder.cc',
|
|
'inter_frame_delay.cc',
|
|
'jitter_buffer.cc',
|
|
'jitter_estimator.cc',
|
|
'media_opt_util.cc',
|
|
'media_optimization.cc',
|
|
'packet.cc',
|
|
'qm_select.cc',
|
|
'receiver.cc',
|
|
'rtt_filter.cc',
|
|
'session_info.cc',
|
|
'timestamp_extrapolator.cc',
|
|
'timestamp_map.cc',
|
|
'timing.cc',
|
|
'video_coding_impl.cc',
|
|
], # source
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|