
The following targets have been merged into audio_coding_unittests: * cng_unittests * g711_unittests * g722_unittests * isacfix_unittests * pcm16b_unittests Some of them were empty and were created with the assumption they were needed in order to get code coverage (which was actually not needed). The following test has been removed since it was empty: * audio_conference_mixer_unittests BUG=none TEST=trybots passing (well, except for the unittests that are removed, they're failing until the try server configuration is updated) Review URL: https://webrtc-codereview.appspot.com/971008 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3222 4adac7df-926f-26a2-2b94-8c16560cd09d
40 lines
1005 B
Python
40 lines
1005 B
Python
# Copyright (c) 2011 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.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'CNG',
|
|
'type': '<(library)',
|
|
'dependencies': [
|
|
'<(webrtc_root)/common_audio/common_audio.gyp:signal_processing',
|
|
],
|
|
'include_dirs': [
|
|
'include',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'include',
|
|
],
|
|
},
|
|
'sources': [
|
|
'include/webrtc_cng.h',
|
|
'webrtc_cng.c',
|
|
'cng_helpfuns.c',
|
|
'cng_helpfuns.h',
|
|
],
|
|
},
|
|
], # targets
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|