blob: 82aa7fd14fd293a133e2f94e397483d8bb1f5c58 [file] [log] [blame]
bjornv@webrtc.org70569082012-04-12 12:13:50 +00001# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00002#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000010 'conditions': [
11 ['enable_protobuf==1', {
12 'targets': [
13 {
andrew@webrtc.orgdd5d8042014-03-13 00:57:52 +000014 'target_name': 'audioproc_unittest_proto',
15 'type': 'static_library',
16 'sources': [ 'test/unittest.proto', ],
17 'variables': {
18 'proto_in_dir': 'test',
19 # Workaround to protect against gyp's pathname relativization when
20 # this file is included by modules.gyp.
21 'proto_out_protected': 'webrtc/audio_processing',
22 'proto_out_dir': '<(proto_out_protected)',
23 },
24 'includes': [ '../../build/protoc.gypi', ],
25 },
26 {
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000027 'target_name': 'audioproc',
28 'type': 'executable',
29 'dependencies': [
30 'audio_processing',
andrew@webrtc.orgae7017d2011-12-03 01:43:29 +000031 'audioproc_debug_proto',
andrew@webrtc.orgb43502e2012-11-26 23:57:38 +000032 '<(DEPTH)/testing/gtest.gyp:gtest',
kma@webrtc.org0e739502012-12-07 15:26:28 +000033 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
34 '<(webrtc_root)/test/test.gyp:test_support',
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000035 ],
36 'sources': [ 'test/process_test.cc', ],
37 },
38 {
39 'target_name': 'unpack_aecdump',
40 'type': 'executable',
41 'dependencies': [
42 'audioproc_debug_proto',
43 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
fischman@webrtc.orgdde7d4c2013-08-15 23:31:30 +000044 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000045 ],
46 'sources': [ 'test/unpack.cc', ],
47 },
niklase@google.com470e71d2011-07-07 08:21:25 +000048 ],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000049 }],
niklase@google.com470e71d2011-07-07 08:21:25 +000050 ],
51}