| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 'webrtc_utility', | 270 'webrtc_utility', |
| 271 '<(webrtc_root)/test/test.gyp:test_support_main', | 271 '<(webrtc_root)/test/test.gyp:test_support_main', |
| 272 '<(DEPTH)/testing/gtest.gyp:gtest', | 272 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 273 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 273 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 274 ], | 274 ], |
| 275 'sources': [ | 275 'sources': [ |
| 276 'test/audio_device_test_api.cc', | 276 'test/audio_device_test_api.cc', |
| 277 'test/audio_device_test_defines.h', | 277 'test/audio_device_test_defines.h', |
| 278 ], | 278 ], |
| 279 }, | 279 }, |
| 280 { | |
| 281 'target_name': 'audio_device_test_func', | |
| 282 'type': 'executable', | |
| 283 'dependencies': [ | |
| 284 'audio_device', | |
| 285 'webrtc_utility', | |
| 286 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | |
| 287 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | |
| 288 '<(webrtc_root)/test/test.gyp:test_support', | |
| 289 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 290 ], | |
| 291 'sources': [ | |
| 292 'test/audio_device_test_func.cc', | |
| 293 'test/audio_device_test_defines.h', | |
| 294 'test/func_test_manager.cc', | |
| 295 'test/func_test_manager.h', | |
| 296 ], | |
| 297 }, | |
| 298 ], # targets | 280 ], # targets |
| 299 }], # include_tests==1 and OS!=ios | 281 }], # include_tests==1 and OS!=ios |
| 300 ], | 282 ], |
| 301 } | 283 } |
| 302 | 284 |
| OLD | NEW |