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 | |
75 ], | 62 ], |
76 'conditions': [ | 63 'conditions': [ |
77 ['enable_protobuf==1', { | 64 ['enable_protobuf==1', { |
78 'targets': [ | 65 'targets': [ |
79 { | 66 { |
80 'target_name': 'audioproc_unittest_proto', | 67 'target_name': 'audioproc_unittest_proto', |
81 'type': 'static_library', | 68 'type': 'static_library', |
82 'sources': [ 'test/unittest.proto', ], | 69 'sources': [ 'test/unittest.proto', ], |
83 'variables': { | 70 'variables': { |
84 'proto_in_dir': 'test', | 71 'proto_in_dir': 'test', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 124 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
138 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 125 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
139 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 126 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
140 ], | 127 ], |
141 'sources': [ 'test/unpack.cc', ], | 128 'sources': [ 'test/unpack.cc', ], |
142 }, | 129 }, |
143 ], | 130 ], |
144 }], | 131 }], |
145 ], | 132 ], |
146 } | 133 } |
OLD | NEW |