| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 '-lmsdmo.lib', | 193 '-lmsdmo.lib', |
| 194 ], | 194 ], |
| 195 }, | 195 }, |
| 196 }], | 196 }], |
| 197 ], # conditions | 197 ], # conditions |
| 198 }], # include_internal_audio_device==1 | 198 }], # include_internal_audio_device==1 |
| 199 ], # conditions | 199 ], # conditions |
| 200 }, | 200 }, |
| 201 ], | 201 ], |
| 202 'conditions': [ | 202 'conditions': [ |
| 203 ['include_tests==1', { | 203 # Does not compile on iOS: webrtc:4755. |
| 204 ['include_tests==1 and OS!="ios"', { |
| 204 'targets': [ | 205 'targets': [ |
| 205 { | 206 { |
| 206 'target_name': 'audio_device_tests', | 207 'target_name': 'audio_device_tests', |
| 207 'type': 'executable', | 208 'type': 'executable', |
| 208 'dependencies': [ | 209 'dependencies': [ |
| 209 'audio_device', | 210 'audio_device', |
| 210 'webrtc_utility', | 211 'webrtc_utility', |
| 211 '<(webrtc_root)/test/test.gyp:test_support_main', | 212 '<(webrtc_root)/test/test.gyp:test_support_main', |
| 212 '<(DEPTH)/testing/gtest.gyp:gtest', | 213 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 213 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 214 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 229 '<(DEPTH)/testing/gtest.gyp:gtest', | 230 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 230 ], | 231 ], |
| 231 'sources': [ | 232 'sources': [ |
| 232 'test/audio_device_test_func.cc', | 233 'test/audio_device_test_func.cc', |
| 233 'test/audio_device_test_defines.h', | 234 'test/audio_device_test_defines.h', |
| 234 'test/func_test_manager.cc', | 235 'test/func_test_manager.cc', |
| 235 'test/func_test_manager.h', | 236 'test/func_test_manager.h', |
| 236 ], | 237 ], |
| 237 }, | 238 }, |
| 238 ], # targets | 239 ], # targets |
| 239 }], # include_tests | 240 }], # include_tests==1 and OS!=ios |
| 240 ], | 241 ], |
| 241 } | 242 } |
| 242 | 243 |
| OLD | NEW |