Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: webrtc/common_audio/common_audio.gyp

Issue 1457053003: Remove build_with_libjingle and exclude failing iOS tests from 'All' target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed modules_unittests for iOS simulator builds Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698