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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'type': 'executable', | 54 'type': 'executable', |
55 'dependencies': [ | 55 'dependencies': [ |
56 'audioproc_test_utils', | 56 'audioproc_test_utils', |
57 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 57 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
58 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 58 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
59 ], | 59 ], |
60 'sources': [ | 60 'sources': [ |
61 'beamformer/nonlinear_beamformer_test.cc', | 61 'beamformer/nonlinear_beamformer_test.cc', |
62 ], | 62 ], |
63 }, # nonlinear_beamformer_test | 63 }, # nonlinear_beamformer_test |
64 { | |
65 'target_name': 'intelligibility_proc', | |
66 'type': 'executable', | |
67 'dependencies': [ | |
68 'audioproc_test_utils', | |
69 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
70 '<(DEPTH)/testing/gtest.gyp:gtest', | |
71 '<(webrtc_root)/modules/modules.gyp:audio_processing', | |
72 '<(webrtc_root)/test/test.gyp:test_support', | |
73 ], | |
74 'sources': [ | |
75 'intelligibility/test/intelligibility_proc.cc', | |
76 ], | |
77 }, # intelligibility_proc | |
78 ], | 64 ], |
79 'conditions': [ | 65 'conditions': [ |
| 66 ['intelligibility_enhancer==1', { |
| 67 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',], |
| 68 'targets': [ |
| 69 { |
| 70 'target_name': 'intelligibility_proc', |
| 71 'type': 'executable', |
| 72 'dependencies': [ |
| 73 'audioproc_test_utils', |
| 74 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 75 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 76 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
| 77 '<(webrtc_root)/test/test.gyp:test_support', |
| 78 ], |
| 79 'sources': [ |
| 80 'intelligibility/test/intelligibility_proc.cc', |
| 81 ], |
| 82 }, |
| 83 ], |
| 84 }, { |
| 85 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',], |
| 86 }], |
80 ['enable_protobuf==1', { | 87 ['enable_protobuf==1', { |
81 'targets': [ | 88 'targets': [ |
82 { | 89 { |
83 'target_name': 'audioproc_unittest_proto', | 90 'target_name': 'audioproc_unittest_proto', |
84 'type': 'static_library', | 91 'type': 'static_library', |
85 'sources': [ 'test/unittest.proto', ], | 92 'sources': [ 'test/unittest.proto', ], |
86 'variables': { | 93 'variables': { |
87 'proto_in_dir': 'test', | 94 'proto_in_dir': 'test', |
88 # Workaround to protect against gyp's pathname relativization when | 95 # Workaround to protect against gyp's pathname relativization when |
89 # this file is included by modules.gyp. | 96 # this file is included by modules.gyp. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 157 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
151 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 158 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 159 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
153 ], | 160 ], |
154 'sources': [ 'test/unpack.cc', ], | 161 'sources': [ 'test/unpack.cc', ], |
155 }, | 162 }, |
156 ], | 163 ], |
157 }], | 164 }], |
158 ], | 165 ], |
159 } | 166 } |
OLD | NEW |