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 and OS!="ios"', { | 231 ['include_tests==1', { |
232 'targets' : [ | 232 'targets' : [ |
233 { | 233 { |
234 # Does not compile on iOS: webrtc:4755. | |
235 'target_name': 'common_audio_unittests', | 234 'target_name': 'common_audio_unittests', |
236 'type': '<(gtest_target_type)', | 235 'type': '<(gtest_target_type)', |
237 'dependencies': [ | 236 'dependencies': [ |
238 'common_audio', | 237 'common_audio', |
239 '<(webrtc_root)/test/test.gyp:test_support_main', | 238 '<(webrtc_root)/test/test.gyp:test_support_main', |
240 '<(DEPTH)/testing/gmock.gyp:gmock', | 239 '<(DEPTH)/testing/gmock.gyp:gmock', |
241 '<(DEPTH)/testing/gtest.gyp:gtest', | 240 '<(DEPTH)/testing/gtest.gyp:gtest', |
242 ], | 241 ], |
243 'sources': [ | 242 'sources': [ |
244 'audio_converter_unittest.cc', | 243 'audio_converter_unittest.cc', |
245 'audio_ring_buffer_unittest.cc', | 244 'audio_ring_buffer_unittest.cc', |
246 'audio_util_unittest.cc', | 245 'audio_util_unittest.cc', |
247 'blocker_unittest.cc', | 246 'blocker_unittest.cc', |
248 'fir_filter_unittest.cc', | 247 'fir_filter_unittest.cc', |
249 'lapped_transform_unittest.cc', | 248 'lapped_transform_unittest.cc', |
250 'real_fourier_unittest.cc', | 249 'real_fourier_unittest.cc', |
251 'resampler/resampler_unittest.cc', | 250 'resampler/resampler_unittest.cc', |
252 'resampler/push_resampler_unittest.cc', | 251 'resampler/push_resampler_unittest.cc', |
253 'resampler/push_sinc_resampler_unittest.cc', | 252 'resampler/push_sinc_resampler_unittest.cc', |
254 'resampler/sinc_resampler_unittest.cc', | |
255 'resampler/sinusoidal_linear_chirp_source.cc', | 253 'resampler/sinusoidal_linear_chirp_source.cc', |
256 'resampler/sinusoidal_linear_chirp_source.h', | 254 'resampler/sinusoidal_linear_chirp_source.h', |
257 'ring_buffer_unittest.cc', | 255 'ring_buffer_unittest.cc', |
258 'signal_processing/real_fft_unittest.cc', | 256 'signal_processing/real_fft_unittest.cc', |
259 'signal_processing/signal_processing_unittest.cc', | 257 'signal_processing/signal_processing_unittest.cc', |
260 'sparse_fir_filter_unittest.cc', | 258 'sparse_fir_filter_unittest.cc', |
261 'swap_queue_unittest.cc', | 259 'swap_queue_unittest.cc', |
262 'vad/vad_core_unittest.cc', | 260 'vad/vad_core_unittest.cc', |
263 'vad/vad_filterbank_unittest.cc', | 261 'vad/vad_filterbank_unittest.cc', |
264 'vad/vad_gmm_unittest.cc', | 262 'vad/vad_gmm_unittest.cc', |
265 'vad/vad_sp_unittest.cc', | 263 'vad/vad_sp_unittest.cc', |
266 'vad/vad_unittest.cc', | 264 'vad/vad_unittest.cc', |
267 'vad/vad_unittest.h', | 265 'vad/vad_unittest.h', |
268 'wav_header_unittest.cc', | 266 'wav_header_unittest.cc', |
269 'wav_file_unittest.cc', | 267 'wav_file_unittest.cc', |
270 'window_generator_unittest.cc', | 268 'window_generator_unittest.cc', |
271 ], | 269 ], |
272 'conditions': [ | 270 'conditions': [ |
273 ['rtc_use_openmax_dl==1', { | 271 ['rtc_use_openmax_dl==1', { |
274 'defines': ['RTC_USE_OPENMAX_DL',], | 272 'defines': ['RTC_USE_OPENMAX_DL',], |
275 }], | 273 }], |
276 ['OS=="android"', { | 274 ['OS=="android"', { |
277 'dependencies': [ | 275 'dependencies': [ |
278 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', | 276 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_cod
e', |
279 ], | 277 ], |
280 }], | 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 }], |
281 ], | 285 ], |
282 }, | 286 }, |
283 ], # targets | 287 ], # targets |
284 'conditions': [ | 288 'conditions': [ |
285 ['OS=="android"', { | 289 ['OS=="android"', { |
286 'targets': [ | 290 'targets': [ |
287 { | 291 { |
288 'target_name': 'common_audio_unittests_apk_target', | 292 'target_name': 'common_audio_unittests_apk_target', |
289 'type': 'none', | 293 'type': 'none', |
290 'dependencies': [ | 294 'dependencies': [ |
(...skipping 16 matching lines...) Expand all Loading... |
307 'sources': [ | 311 'sources': [ |
308 'common_audio_unittests.isolate', | 312 'common_audio_unittests.isolate', |
309 ], | 313 ], |
310 }, | 314 }, |
311 ], | 315 ], |
312 }], | 316 }], |
313 ], | 317 ], |
314 }], | 318 }], |
315 ], # conditions | 319 ], # conditions |
316 } | 320 } |
OLD | NEW |