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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'dependencies': [ | 122 'dependencies': [ |
123 'audio_processing', | 123 'audio_processing', |
124 'audioproc_debug_proto', | 124 'audioproc_debug_proto', |
125 'audioproc_test_utils', | 125 'audioproc_test_utils', |
126 'audioproc_protobuf_utils', | 126 'audioproc_protobuf_utils', |
127 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | 127 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', |
128 '<(webrtc_root)/test/test.gyp:test_support', | 128 '<(webrtc_root)/test/test.gyp:test_support', |
129 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 129 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
130 ], | 130 ], |
131 'sources': [ | 131 'sources': [ |
132 'test/audio_file_processor.cc', | 132 'test/audio_processing_simulator.cc', |
133 'test/audio_file_processor.h', | 133 'test/audio_processing_simulator.h', |
| 134 'test/aec_dump_based_simulator.cc', |
| 135 'test/aec_dump_based_simulator.h', |
| 136 'test/wav_based_simulator.cc', |
| 137 'test/wav_based_simulator.h', |
134 'test/audioproc_float.cc', | 138 'test/audioproc_float.cc', |
135 ], | 139 ], |
136 }, | 140 }, |
137 { | 141 { |
138 'target_name': 'unpack_aecdump', | 142 'target_name': 'unpack_aecdump', |
139 'type': 'executable', | 143 'type': 'executable', |
140 'dependencies': [ | 144 'dependencies': [ |
141 'audioproc_debug_proto', | 145 'audioproc_debug_proto', |
142 'audioproc_test_utils', | 146 'audioproc_test_utils', |
143 'audioproc_protobuf_utils', | 147 'audioproc_protobuf_utils', |
144 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 148 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
145 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 149 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
146 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 150 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
147 ], | 151 ], |
148 'sources': [ 'test/unpack.cc', ], | 152 'sources': [ 'test/unpack.cc', ], |
149 }, | 153 }, |
150 ], | 154 ], |
151 }], | 155 }], |
152 ], | 156 ], |
153 } | 157 } |
OLD | NEW |