
BUG=1655 Review URL: https://webrtc-codereview.appspot.com/1326005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3857 4adac7df-926f-26a2-2b94-8c16560cd09d
63 lines
1.6 KiB
Python
63 lines
1.6 KiB
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': 'vad',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'signal_processing',
|
|
],
|
|
'include_dirs': [
|
|
'include',
|
|
],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': [
|
|
'include',
|
|
],
|
|
},
|
|
'sources': [
|
|
'include/webrtc_vad.h',
|
|
'webrtc_vad.c',
|
|
'vad_core.c',
|
|
'vad_core.h',
|
|
'vad_filterbank.c',
|
|
'vad_filterbank.h',
|
|
'vad_gmm.c',
|
|
'vad_gmm.h',
|
|
'vad_sp.c',
|
|
'vad_sp.h',
|
|
],
|
|
},
|
|
], # targets
|
|
'conditions': [
|
|
['include_tests==1', {
|
|
'targets' : [
|
|
{
|
|
'target_name': 'vad_unittests',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'vad',
|
|
'<(webrtc_root)/test/test.gyp:test_support_main',
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
],
|
|
'sources': [
|
|
'vad_core_unittest.cc',
|
|
'vad_filterbank_unittest.cc',
|
|
'vad_gmm_unittest.cc',
|
|
'vad_sp_unittest.cc',
|
|
'vad_unittest.cc',
|
|
'vad_unittest.h',
|
|
],
|
|
}, # vad_unittests
|
|
], # targets
|
|
}], # include_tests
|
|
], # conditions
|
|
}
|