> Rename neteq4 folder to neteq > > BUG=2996 > R=turaj@webrtc.org > > Review URL: https://webrtc-codereview.appspot.com/12569005 TBR=henrik.lundin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/13549004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6259 4adac7df-926f-26a2-2b94-8c16560cd09d
158 lines
4.4 KiB
Python
158 lines
4.4 KiB
Python
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
{
|
|
'variables': {
|
|
'audio_coding_dependencies': [
|
|
'CNG',
|
|
'G711',
|
|
'G722',
|
|
'iLBC',
|
|
'iSAC',
|
|
'iSACFix',
|
|
'PCM16B',
|
|
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
],
|
|
'audio_coding_defines': [],
|
|
'conditions': [
|
|
['include_opus==1', {
|
|
'audio_coding_dependencies': ['webrtc_opus',],
|
|
'audio_coding_defines': ['WEBRTC_CODEC_OPUS',],
|
|
}],
|
|
],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'audio_coding_module',
|
|
'type': 'static_library',
|
|
'defines': [
|
|
'<@(audio_coding_defines)',
|
|
],
|
|
'dependencies': [
|
|
'<@(audio_coding_dependencies)',
|
|
'NetEq4',
|
|
],
|
|
'include_dirs': [
|
|
'../interface',
|
|
'../../../interface',
|
|
'<(webrtc_root)',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'../interface',
|
|
'../../../interface',
|
|
'<(webrtc_root)',
|
|
],
|
|
},
|
|
'sources': [
|
|
'../interface/audio_coding_module.h',
|
|
'../interface/audio_coding_module_typedefs.h',
|
|
'acm_amr.cc',
|
|
'acm_amr.h',
|
|
'acm_amrwb.cc',
|
|
'acm_amrwb.h',
|
|
'acm_celt.cc',
|
|
'acm_celt.h',
|
|
'acm_cng.cc',
|
|
'acm_cng.h',
|
|
'acm_codec_database.cc',
|
|
'acm_codec_database.h',
|
|
'acm_common_defs.h',
|
|
'acm_dtmf_playout.cc',
|
|
'acm_dtmf_playout.h',
|
|
'acm_g722.cc',
|
|
'acm_g722.h',
|
|
'acm_g7221.cc',
|
|
'acm_g7221.h',
|
|
'acm_g7221c.cc',
|
|
'acm_g7221c.h',
|
|
'acm_g729.cc',
|
|
'acm_g729.h',
|
|
'acm_g7291.cc',
|
|
'acm_g7291.h',
|
|
'acm_generic_codec.cc',
|
|
'acm_generic_codec.h',
|
|
'acm_gsmfr.cc',
|
|
'acm_gsmfr.h',
|
|
'acm_ilbc.cc',
|
|
'acm_ilbc.h',
|
|
'acm_isac.cc',
|
|
'acm_isac.h',
|
|
'acm_isac_macros.h',
|
|
'acm_opus.cc',
|
|
'acm_opus.h',
|
|
'acm_speex.cc',
|
|
'acm_speex.h',
|
|
'acm_pcm16b.cc',
|
|
'acm_pcm16b.h',
|
|
'acm_pcma.cc',
|
|
'acm_pcma.h',
|
|
'acm_pcmu.cc',
|
|
'acm_pcmu.h',
|
|
'acm_red.cc',
|
|
'acm_red.h',
|
|
'acm_receiver.cc',
|
|
'acm_receiver.h',
|
|
'acm_resampler.cc',
|
|
'acm_resampler.h',
|
|
'audio_coding_module.cc',
|
|
'audio_coding_module_impl.cc',
|
|
'audio_coding_module_impl.h',
|
|
'call_statistics.cc',
|
|
'call_statistics.h',
|
|
'initial_delay_manager.cc',
|
|
'initial_delay_manager.h',
|
|
'nack.cc',
|
|
'nack.h',
|
|
],
|
|
},
|
|
],
|
|
'conditions': [
|
|
['include_tests==1', {
|
|
'targets': [
|
|
{
|
|
'target_name': 'delay_test',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'audio_coding_module',
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
|
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
|
],
|
|
'sources': [
|
|
'../test/delay_test.cc',
|
|
'../test/Channel.cc',
|
|
'../test/PCMFile.cc',
|
|
'../test/utility.cc',
|
|
],
|
|
}, # delay_test
|
|
{
|
|
'target_name': 'insert_packet_with_timing',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'audio_coding_module',
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
|
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
|
],
|
|
'sources': [
|
|
'../test/insert_packet_with_timing.cc',
|
|
'../test/Channel.cc',
|
|
'../test/PCMFile.cc',
|
|
],
|
|
}, # delay_test
|
|
],
|
|
}],
|
|
],
|
|
}
|