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', | 12 'target_name': 'audioproc_test_utils', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
| 15 'audioproc_debug_proto', |
15 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | 16 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 17 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
17 ], | 18 ], |
18 'sources': [ | 19 'sources': [ |
| 20 'test/audio_file_processor.cc', |
| 21 'test/audio_file_processor.h', |
19 'test/test_utils.cc', | 22 'test/test_utils.cc', |
20 'test/test_utils.h', | 23 'test/test_utils.h', |
21 ], | 24 ], |
22 }, | 25 }, |
23 { | 26 { |
24 'target_name': 'transient_suppression_test', | 27 'target_name': 'transient_suppression_test', |
25 'type': 'executable', | 28 'type': 'executable', |
26 'dependencies': [ | 29 'dependencies': [ |
27 '<(DEPTH)/testing/gtest.gyp:gtest', | 30 '<(DEPTH)/testing/gtest.gyp:gtest', |
28 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 31 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 143 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
141 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 144 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
142 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 145 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
143 ], | 146 ], |
144 'sources': [ 'test/unpack.cc', ], | 147 'sources': [ 'test/unpack.cc', ], |
145 }, | 148 }, |
146 ], | 149 ], |
147 }], | 150 }], |
148 ], | 151 ], |
149 } | 152 } |
OLD | NEW |