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', { | 231 ['include_tests==1 and OS!="ios"', { |
232 'targets' : [ | 232 'targets' : [ |
233 { | 233 { |
| 234 # Does not compile on iOS: webrtc:4755. |
234 'target_name': 'common_audio_unittests', | 235 'target_name': 'common_audio_unittests', |
235 'type': '<(gtest_target_type)', | 236 'type': '<(gtest_target_type)', |
236 'dependencies': [ | 237 'dependencies': [ |
237 'common_audio', | 238 'common_audio', |
238 '<(webrtc_root)/test/test.gyp:test_support_main', | 239 '<(webrtc_root)/test/test.gyp:test_support_main', |
239 '<(DEPTH)/testing/gmock.gyp:gmock', | 240 '<(DEPTH)/testing/gmock.gyp:gmock', |
240 '<(DEPTH)/testing/gtest.gyp:gtest', | 241 '<(DEPTH)/testing/gtest.gyp:gtest', |
241 ], | 242 ], |
242 'sources': [ | 243 'sources': [ |
243 'audio_converter_unittest.cc', | 244 'audio_converter_unittest.cc', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 'sources': [ | 307 'sources': [ |
307 'common_audio_unittests.isolate', | 308 'common_audio_unittests.isolate', |
308 ], | 309 ], |
309 }, | 310 }, |
310 ], | 311 ], |
311 }], | 312 }], |
312 ], | 313 ], |
313 }], | 314 }], |
314 ], # conditions | 315 ], # conditions |
315 } | 316 } |
OLD | NEW |