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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 }, | 248 }, |
249 }, | 249 }, |
250 }], | 250 }], |
251 ], # conditions (for non-dummy devices) | 251 ], # conditions (for non-dummy devices) |
252 }], # use_dummy_audio_file_devices check | 252 }], # use_dummy_audio_file_devices check |
253 ], # conditions | 253 ], # conditions |
254 }], # include_internal_audio_device==1 | 254 }], # include_internal_audio_device==1 |
255 ], # conditions | 255 ], # conditions |
256 }, | 256 }, |
257 ], | 257 ], |
258 'conditions': [ | |
259 # Does not compile on iOS: webrtc:4755. | |
260 ['include_tests==1 and OS!="ios"', { | |
261 'targets': [ | |
262 { | |
263 'target_name': 'audio_device_tests', | |
264 'type': 'executable', | |
265 'dependencies': [ | |
266 'audio_device', | |
267 'webrtc_utility', | |
268 '<(webrtc_root)/test/test.gyp:test_support_main', | |
269 '<(DEPTH)/testing/gtest.gyp:gtest', | |
270 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | |
271 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, | |
272 ], | |
273 'sources': [ | |
274 'test/audio_device_test_api.cc', | |
275 'test/audio_device_test_defines.h', | |
276 ], | |
277 }, | |
278 ], # targets | |
279 }], # include_tests==1 and OS!=ios | |
280 ], | |
281 } | 258 } |
282 | 259 |
OLD | NEW |