2012-04-12 12:13:50 +00:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
#
|
|
|
|
|
# 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': [
|
2011-07-29 17:29:08 +00:00
|
|
|
{
|
2011-09-13 01:04:59 +00:00
|
|
|
'target_name': 'audioproc_unittest_proto',
|
2011-10-26 00:27:17 +00:00
|
|
|
'type': 'static_library',
|
|
|
|
|
'sources': [ 'test/unittest.proto', ],
|
2011-07-29 17:29:08 +00:00
|
|
|
'variables': {
|
2011-10-26 00:27:17 +00:00
|
|
|
'proto_in_dir': 'test',
|
|
|
|
|
# Workaround to protect against gyp's pathname relativization when this
|
|
|
|
|
# file is included by modules.gyp.
|
|
|
|
|
'proto_out_protected': 'webrtc/audio_processing',
|
|
|
|
|
'proto_out_dir': '<(proto_out_protected)',
|
2011-07-29 17:29:08 +00:00
|
|
|
},
|
2011-11-03 20:43:45 +00:00
|
|
|
'includes': [ '../../build/protoc.gypi', ],
|
2011-07-29 17:29:08 +00:00
|
|
|
},
|
2011-12-03 00:03:31 +00:00
|
|
|
],
|
|
|
|
|
'conditions': [
|
|
|
|
|
['enable_protobuf==1', {
|
|
|
|
|
'targets': [
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'audioproc',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
|
|
|
|
'audio_processing',
|
2011-12-03 01:43:29 +00:00
|
|
|
'audioproc_debug_proto',
|
2012-11-26 23:57:38 +00:00
|
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
2012-12-07 15:26:28 +00:00
|
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
|
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
2011-12-03 00:03:31 +00:00
|
|
|
],
|
|
|
|
|
'sources': [ 'test/process_test.cc', ],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'unpack_aecdump',
|
|
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
|
|
|
|
'audioproc_debug_proto',
|
|
|
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
2013-08-15 23:31:30 +00:00
|
|
|
'<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
|
2011-12-03 00:03:31 +00:00
|
|
|
],
|
|
|
|
|
'sources': [ 'test/unpack.cc', ],
|
|
|
|
|
},
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
2011-12-03 00:03:31 +00:00
|
|
|
}],
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
|
|
|
|
}
|