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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'acm_receive_test', | 57 'acm_receive_test', |
58 'acm_send_test', | 58 'acm_send_test', |
59 'audio_coding_module', | 59 'audio_coding_module', |
60 'audio_device' , | 60 'audio_device' , |
61 'audio_processing', | 61 'audio_processing', |
62 'audioproc_test_utils', | 62 'audioproc_test_utils', |
63 'bitrate_controller', | 63 'bitrate_controller', |
64 'bwe_simulator', | 64 'bwe_simulator', |
65 'cng', | 65 'cng', |
66 'desktop_capture', | 66 'desktop_capture', |
67 'isac', | |
68 'isac_fix', | 67 'isac_fix', |
69 'media_file', | 68 'media_file', |
70 'neteq', | 69 'neteq', |
71 'neteq_test_support', | 70 'neteq_test_support', |
72 'neteq_unittest_tools', | 71 'neteq_unittest_tools', |
73 'paced_sender', | 72 'paced_sender', |
74 'pcm16b', # Needed by NetEq tests. | 73 'pcm16b', # Needed by NetEq tests. |
75 'red', | 74 'red', |
76 'remote_bitrate_estimator', | 75 'remote_bitrate_estimator', |
77 'rtp_rtcp', | 76 'rtp_rtcp', |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 ], | 343 ], |
345 'sources': [ | 344 'sources': [ |
346 'audio_device/android/audio_device_unittest.cc', | 345 'audio_device/android/audio_device_unittest.cc', |
347 'audio_device/android/audio_manager_unittest.cc', | 346 'audio_device/android/audio_manager_unittest.cc', |
348 'audio_device/android/ensure_initialized.cc', | 347 'audio_device/android/ensure_initialized.cc', |
349 'audio_device/android/ensure_initialized.h', | 348 'audio_device/android/ensure_initialized.h', |
350 'audio_device/android/fine_audio_buffer_unittest.cc', | 349 'audio_device/android/fine_audio_buffer_unittest.cc', |
351 ], | 350 ], |
352 }], | 351 }], |
353 ['OS=="ios"', { | 352 ['OS=="ios"', { |
| 353 'sources': [ |
| 354 'audio_device/ios/audio_device_unittest_ios.cc', |
| 355 ], |
354 'mac_bundle_resources': [ | 356 'mac_bundle_resources': [ |
355 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', | 357 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', |
356 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', | 358 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', |
357 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', | 359 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', |
| 360 '<(DEPTH)/resources/audio_device/audio_short16.pcm', |
| 361 '<(DEPTH)/resources/audio_device/audio_short44.pcm', |
| 362 '<(DEPTH)/resources/audio_device/audio_short48.pcm', |
358 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer.
dat', | 363 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer.
dat', |
359 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat', | 364 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat', |
360 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', | 365 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', |
361 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat', | 366 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat', |
362 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat', | 367 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat', |
363 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe
r.dat', | 368 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe
r.dat', |
364 '<(DEPTH)/resources/short_mixed_mono_48.dat', | 369 '<(DEPTH)/resources/short_mixed_mono_48.dat', |
365 '<(DEPTH)/resources/short_mixed_mono_48.pcm', | 370 '<(DEPTH)/resources/short_mixed_mono_48.pcm', |
366 '<(DEPTH)/resources/short_mixed_stereo_48.dat', | 371 '<(DEPTH)/resources/short_mixed_stereo_48.dat', |
367 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', | 372 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 'sources': [ | 479 'sources': [ |
475 'modules_unittests.isolate', | 480 'modules_unittests.isolate', |
476 ], | 481 ], |
477 }, | 482 }, |
478 ], | 483 ], |
479 }], | 484 }], |
480 ], | 485 ], |
481 }], # include_tests | 486 }], # include_tests |
482 ], # conditions | 487 ], # conditions |
483 } | 488 } |
OLD | NEW |