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': [ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'type': 'executable', | 52 'type': 'executable', |
53 'dependencies': [ | 53 'dependencies': [ |
54 'audioproc_test_utils', | 54 'audioproc_test_utils', |
55 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 55 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
56 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 56 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
57 ], | 57 ], |
58 'sources': [ | 58 'sources': [ |
59 'beamformer/nonlinear_beamformer_test.cc', | 59 'beamformer/nonlinear_beamformer_test.cc', |
60 ], | 60 ], |
61 }, # nonlinear_beamformer_test | 61 }, # nonlinear_beamformer_test |
| 62 { |
| 63 'target_name': 'intelligibility_proc', |
| 64 'type': 'executable', |
| 65 'dependencies': [ |
| 66 'audioproc_test_utils', |
| 67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 68 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 69 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
| 70 ], |
| 71 'sources': [ |
| 72 'intelligibility/intelligibility_proc.cc', |
| 73 ], |
| 74 }, # intelligibility_proc |
62 ], | 75 ], |
63 'conditions': [ | 76 'conditions': [ |
64 ['enable_protobuf==1', { | 77 ['enable_protobuf==1', { |
65 'targets': [ | 78 'targets': [ |
66 { | 79 { |
67 'target_name': 'audioproc_unittest_proto', | 80 'target_name': 'audioproc_unittest_proto', |
68 'type': 'static_library', | 81 'type': 'static_library', |
69 'sources': [ 'test/unittest.proto', ], | 82 'sources': [ 'test/unittest.proto', ], |
70 'variables': { | 83 'variables': { |
71 'proto_in_dir': 'test', | 84 'proto_in_dir': 'test', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 137 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
125 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 138 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
126 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 139 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
127 ], | 140 ], |
128 'sources': [ 'test/unpack.cc', ], | 141 'sources': [ 'test/unpack.cc', ], |
129 }, | 142 }, |
130 ], | 143 ], |
131 }], | 144 }], |
132 ], | 145 ], |
133 } | 146 } |
OLD | NEW |