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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 '-Wno-ignored-qualifiers', | 337 '-Wno-ignored-qualifiers', |
338 ], | 338 ], |
339 'sources': [ | 339 'sources': [ |
340 'audio_device/android/audio_device_unittest.cc', | 340 'audio_device/android/audio_device_unittest.cc', |
341 'audio_device/android/audio_manager_unittest.cc', | 341 'audio_device/android/audio_manager_unittest.cc', |
342 'audio_device/android/ensure_initialized.cc', | 342 'audio_device/android/ensure_initialized.cc', |
343 'audio_device/android/ensure_initialized.h', | 343 'audio_device/android/ensure_initialized.h', |
344 'audio_device/android/fine_audio_buffer_unittest.cc', | 344 'audio_device/android/fine_audio_buffer_unittest.cc', |
345 ], | 345 ], |
346 }], | 346 }], |
| 347 ['OS=="ios"', { |
| 348 'mac_bundle_resources': [ |
| 349 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', |
| 350 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', |
| 351 ], |
| 352 }], |
347 ], | 353 ], |
348 # Disable warnings to enable Win64 build, issue 1323. | 354 # Disable warnings to enable Win64 build, issue 1323. |
349 'msvs_disabled_warnings': [ | 355 'msvs_disabled_warnings': [ |
350 4267, # size_t to int truncation. | 356 4267, # size_t to int truncation. |
351 ], | 357 ], |
352 }, | 358 }, |
353 { | 359 { |
354 'target_name': 'modules_tests', | 360 'target_name': 'modules_tests', |
355 'type': '<(gtest_target_type)', | 361 'type': '<(gtest_target_type)', |
356 'dependencies': [ | 362 'dependencies': [ |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 'sources': [ | 457 'sources': [ |
452 'modules_unittests.isolate', | 458 'modules_unittests.isolate', |
453 ], | 459 ], |
454 }, | 460 }, |
455 ], | 461 ], |
456 }], | 462 }], |
457 ], | 463 ], |
458 }], # include_tests | 464 }], # include_tests |
459 ], # conditions | 465 ], # conditions |
460 } | 466 } |
OLD | NEW |