OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
| 12 'target_name': 'audioproc_test_utils', |
| 13 'type': 'static_library', |
| 14 'dependencies': [ |
| 15 'audioproc_debug_proto', |
| 16 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 17 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 18 ], |
| 19 'sources': [ |
| 20 'test/audio_file_processor.cc', |
| 21 'test/audio_file_processor.h', |
| 22 'test/test_utils.cc', |
| 23 'test/test_utils.h', |
| 24 ], |
| 25 }, |
| 26 { |
12 'target_name': 'transient_suppression_test', | 27 'target_name': 'transient_suppression_test', |
13 'type': 'executable', | 28 'type': 'executable', |
14 'dependencies': [ | 29 'dependencies': [ |
15 '<(DEPTH)/testing/gtest.gyp:gtest', | 30 '<(DEPTH)/testing/gtest.gyp:gtest', |
16 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 31 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
17 '<(webrtc_root)/test/test.gyp:test_support', | 32 '<(webrtc_root)/test/test.gyp:test_support', |
18 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 33 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
19 ], | 34 ], |
20 'sources': [ | 35 'sources': [ |
21 'transient/transient_suppression_test.cc', | 36 'transient/transient_suppression_test.cc', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ], | 74 ], |
60 'sources': [ | 75 'sources': [ |
61 'intelligibility/test/intelligibility_proc.cc', | 76 'intelligibility/test/intelligibility_proc.cc', |
62 ], | 77 ], |
63 }, # intelligibility_proc | 78 }, # intelligibility_proc |
64 ], | 79 ], |
65 'conditions': [ | 80 'conditions': [ |
66 ['enable_protobuf==1', { | 81 ['enable_protobuf==1', { |
67 'targets': [ | 82 'targets': [ |
68 { | 83 { |
69 'target_name': 'audioproc_test_utils', | |
70 'type': 'static_library', | |
71 'dependencies': [ | |
72 'audioproc_debug_proto', | |
73 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | |
74 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | |
75 ], | |
76 'sources': [ | |
77 'test/audio_file_processor.cc', | |
78 'test/audio_file_processor.h', | |
79 'test/test_utils.cc', | |
80 'test/test_utils.h', | |
81 ], | |
82 }, | |
83 { | |
84 'target_name': 'audioproc_unittest_proto', | 84 'target_name': 'audioproc_unittest_proto', |
85 'type': 'static_library', | 85 'type': 'static_library', |
86 'sources': [ 'test/unittest.proto', ], | 86 'sources': [ 'test/unittest.proto', ], |
87 'variables': { | 87 'variables': { |
88 'proto_in_dir': 'test', | 88 'proto_in_dir': 'test', |
89 # Workaround to protect against gyp's pathname relativization when | 89 # Workaround to protect against gyp's pathname relativization when |
90 # this file is included by modules.gyp. | 90 # this file is included by modules.gyp. |
91 'proto_out_protected': 'webrtc/audio_processing', | 91 'proto_out_protected': 'webrtc/audio_processing', |
92 'proto_out_dir': '<(proto_out_protected)', | 92 'proto_out_dir': '<(proto_out_protected)', |
93 }, | 93 }, |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 143 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
144 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 144 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
145 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 145 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
146 ], | 146 ], |
147 'sources': [ 'test/unpack.cc', ], | 147 'sources': [ 'test/unpack.cc', ], |
148 }, | 148 }, |
149 ], | 149 ], |
150 }], | 150 }], |
151 ], | 151 ], |
152 } | 152 } |
OLD | NEW |