blob: a5351445898c693fea95e8a7c4ed4ba8a3e91aca [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.orgbd8c8652015-03-20 00:28:22 +000010 'targets': [
11 {
12 'target_name': 'transient_suppression_test',
13 'type': 'executable',
14 'dependencies': [
15 '<(DEPTH)/testing/gtest.gyp:gtest',
16 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
17 '<(webrtc_root)/test/test.gyp:test_support',
18 '<(webrtc_root)/modules/modules.gyp:audio_processing',
19 ],
20 'sources': [
21 'transient/transient_suppression_test.cc',
22 'transient/file_utils.cc',
23 'transient/file_utils.h',
24 ],
25 }, # transient_suppression_test
26 {
27 'target_name': 'click_annotate',
28 'type': 'executable',
29 'dependencies': [
30 '<(webrtc_root)/modules/modules.gyp:audio_processing',
31 ],
32 'sources': [
33 'transient/click_annotate.cc',
34 'transient/file_utils.cc',
35 'transient/file_utils.h',
36 ],
37 }, # click_annotate
38 {
39 'target_name': 'nonlinear_beamformer_test',
40 'type': 'executable',
41 'dependencies': [
42 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
43 '<(webrtc_root)/modules/modules.gyp:audio_processing',
44 ],
45 'sources': [
46 'beamformer/nonlinear_beamformer_test.cc',
47 'beamformer/pcm_utils.cc',
48 'beamformer/pcm_utils.h',
49 ],
50 }, # nonlinear_beamformer_test
51 ],
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000052 'conditions': [
53 ['enable_protobuf==1', {
54 'targets': [
55 {
andrew@webrtc.orgdd5d8042014-03-13 00:57:52 +000056 'target_name': 'audioproc_unittest_proto',
57 'type': 'static_library',
58 'sources': [ 'test/unittest.proto', ],
59 'variables': {
60 'proto_in_dir': 'test',
61 # Workaround to protect against gyp's pathname relativization when
62 # this file is included by modules.gyp.
63 'proto_out_protected': 'webrtc/audio_processing',
64 'proto_out_dir': '<(proto_out_protected)',
65 },
66 'includes': [ '../../build/protoc.gypi', ],
67 },
68 {
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000069 'target_name': 'audioproc',
70 'type': 'executable',
71 'dependencies': [
72 'audio_processing',
andrew@webrtc.orgae7017d2011-12-03 01:43:29 +000073 'audioproc_debug_proto',
andrew@webrtc.orgb43502e2012-11-26 23:57:38 +000074 '<(DEPTH)/testing/gtest.gyp:gtest',
andresp@webrtc.org86e1e482015-01-14 09:30:52 +000075 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
kma@webrtc.org0e739502012-12-07 15:26:28 +000076 '<(webrtc_root)/test/test.gyp:test_support',
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000077 ],
78 'sources': [ 'test/process_test.cc', ],
79 },
80 {
andrew@webrtc.org08df9b22014-12-16 20:57:15 +000081 'target_name': 'audioproc_f',
82 'type': 'executable',
83 'dependencies': [
84 'audio_processing',
85 'audioproc_debug_proto',
86 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
87 ],
88 'sources': [ 'test/audioproc_float.cc', ],
89 },
90 {
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000091 'target_name': 'unpack_aecdump',
92 'type': 'executable',
93 'dependencies': [
94 'audioproc_debug_proto',
andresp@webrtc.org86e1e482015-01-14 09:30:52 +000095 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
aluebs@webrtc.org841f58f2014-09-02 07:51:51 +000096 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
fischman@webrtc.orgdde7d4c2013-08-15 23:31:30 +000097 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
andrew@webrtc.org7bf26462011-12-03 00:03:31 +000098 ],
99 'sources': [ 'test/unpack.cc', ],
100 },
aluebs@webrtc.org0c39e912014-12-18 22:22:04 +0000101 ],
102 }],
niklase@google.com470e71d2011-07-07 08:21:25 +0000103 ],
104}