OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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 'includes': [ | 10 'includes': [ |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 'sources': [ | 221 'sources': [ |
222 'fir_filter_neon.cc', | 222 'fir_filter_neon.cc', |
223 'resampler/sinc_resampler_neon.cc', | 223 'resampler/sinc_resampler_neon.cc', |
224 'signal_processing/cross_correlation_neon.c', | 224 'signal_processing/cross_correlation_neon.c', |
225 'signal_processing/downsample_fast_neon.c', | 225 'signal_processing/downsample_fast_neon.c', |
226 'signal_processing/min_max_operations_neon.c', | 226 'signal_processing/min_max_operations_neon.c', |
227 ], | 227 ], |
228 }, | 228 }, |
229 ], # targets | 229 ], # targets |
230 }], | 230 }], |
231 ['include_tests==1', { | |
232 'targets' : [ | |
233 { | |
234 'target_name': 'common_audio_unittests', | |
235 'type': '<(gtest_target_type)', | |
236 'dependencies': [ | |
237 'common_audio', | |
238 '<(webrtc_root)/test/test.gyp:test_support_main', | |
239 '<(DEPTH)/testing/gmock.gyp:gmock', | |
240 '<(DEPTH)/testing/gtest.gyp:gtest', | |
241 ], | |
242 'sources': [ | |
243 'audio_converter_unittest.cc', | |
244 'audio_ring_buffer_unittest.cc', | |
245 'audio_util_unittest.cc', | |
246 'blocker_unittest.cc', | |
247 'channel_buffer_unittest.cc', | |
248 'fir_filter_unittest.cc', | |
249 'lapped_transform_unittest.cc', | |
250 'real_fourier_unittest.cc', | |
251 'resampler/resampler_unittest.cc', | |
252 'resampler/push_resampler_unittest.cc', | |
253 'resampler/push_sinc_resampler_unittest.cc', | |
254 'resampler/sinusoidal_linear_chirp_source.cc', | |
255 'resampler/sinusoidal_linear_chirp_source.h', | |
256 'ring_buffer_unittest.cc', | |
257 'signal_processing/real_fft_unittest.cc', | |
258 'signal_processing/signal_processing_unittest.cc', | |
259 'sparse_fir_filter_unittest.cc', | |
260 'vad/vad_core_unittest.cc', | |
261 'vad/vad_filterbank_unittest.cc', | |
262 'vad/vad_gmm_unittest.cc', | |
263 'vad/vad_sp_unittest.cc', | |
264 'vad/vad_unittest.cc', | |
265 'vad/vad_unittest.h', | |
266 'wav_header_unittest.cc', | |
267 'wav_file_unittest.cc', | |
268 'window_generator_unittest.cc', | |
269 ], | |
270 'conditions': [ | |
271 ['rtc_use_openmax_dl==1', { | |
272 'defines': ['RTC_USE_OPENMAX_DL',], | |
273 }], | |
274 ['OS=="android"', { | |
275 'dependencies': [ | |
276 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', | |
277 ], | |
278 }], | |
279 # Does not compile on iOS for arm: webrtc:5544. | |
280 ['OS!="ios" or target_arch!="arm"' , { | |
281 'sources': [ | |
282 'resampler/sinc_resampler_unittest.cc', | |
283 ], | |
284 }], | |
285 ], | |
286 }, | |
287 ], # targets | |
288 'conditions': [ | |
289 ['OS=="android"', { | |
290 'targets': [ | |
291 { | |
292 'target_name': 'common_audio_unittests_apk_target', | |
293 'type': 'none', | |
294 'dependencies': [ | |
295 '<(android_tests_path):common_audio_unittests_apk', | |
296 ], | |
297 }, | |
298 ], | |
299 'conditions': [ | |
300 ['test_isolation_mode != "noop"', | |
301 { | |
302 'targets': [ | |
303 { | |
304 'target_name': 'common_audio_unittests_apk_run', | |
305 'type': 'none', | |
306 'dependencies': [ | |
307 '<(android_tests_path):common_audio_unittests_apk', | |
308 ], | |
309 'includes': [ | |
310 '../build/isolate.gypi', | |
311 ], | |
312 'sources': [ | |
313 'common_audio_unittests_apk.isolate', | |
314 ], | |
315 }, | |
316 ], | |
317 }, | |
318 ], | |
319 ], | |
320 }], # OS=="android" | |
321 ['test_isolation_mode != "noop"', { | |
322 'targets': [ | |
323 { | |
324 'target_name': 'common_audio_unittests_run', | |
325 'type': 'none', | |
326 'dependencies': [ | |
327 'common_audio_unittests', | |
328 ], | |
329 'includes': [ | |
330 '../build/isolate.gypi', | |
331 ], | |
332 'sources': [ | |
333 'common_audio_unittests.isolate', | |
334 ], | |
335 }, | |
336 ], | |
337 }], | |
338 ], | |
339 }], | |
340 ], # conditions | 231 ], # conditions |
341 } | 232 } |
OLD | NEW |