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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 ], | 344 ], |
346 'sources': [ | 345 'sources': [ |
347 'audio_device/android/audio_device_unittest.cc', | 346 'audio_device/android/audio_device_unittest.cc', |
348 'audio_device/android/audio_manager_unittest.cc', | 347 'audio_device/android/audio_manager_unittest.cc', |
349 'audio_device/android/ensure_initialized.cc', | 348 'audio_device/android/ensure_initialized.cc', |
350 'audio_device/android/ensure_initialized.h', | 349 'audio_device/android/ensure_initialized.h', |
351 'audio_device/android/fine_audio_buffer_unittest.cc', | 350 'audio_device/android/fine_audio_buffer_unittest.cc', |
352 ], | 351 ], |
353 }], | 352 }], |
354 ['OS=="ios"', { | 353 ['OS=="ios"', { |
| 354 'sources': [ |
| 355 'audio_device/ios/audio_device_unittest_ios.cc', |
| 356 ], |
355 'mac_bundle_resources': [ | 357 'mac_bundle_resources': [ |
356 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', | 358 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', |
357 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', | 359 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', |
358 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', | 360 '<(DEPTH)/resources/audio_coding/teststereo32kHz.pcm', |
| 361 '<(DEPTH)/resources/audio_device/audio_short16.pcm', |
| 362 '<(DEPTH)/resources/audio_device/audio_short44.pcm', |
| 363 '<(DEPTH)/resources/audio_device/audio_short48.pcm', |
359 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer.
dat', | 364 '<(DEPTH)/resources/audio_processing/agc/agc_no_circular_buffer.
dat', |
360 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat', | 365 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_gain.dat', |
361 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', | 366 '<(DEPTH)/resources/audio_processing/agc/agc_pitch_lag.dat', |
362 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat', | 367 '<(DEPTH)/resources/audio_processing/agc/agc_spectral_peak.dat', |
363 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat', | 368 '<(DEPTH)/resources/audio_processing/agc/agc_voicing_prob.dat', |
364 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe
r.dat', | 369 '<(DEPTH)/resources/audio_processing/agc/agc_with_circular_buffe
r.dat', |
365 '<(DEPTH)/resources/short_mixed_mono_48.dat', | 370 '<(DEPTH)/resources/short_mixed_mono_48.dat', |
366 '<(DEPTH)/resources/short_mixed_mono_48.pcm', | 371 '<(DEPTH)/resources/short_mixed_mono_48.pcm', |
367 '<(DEPTH)/resources/short_mixed_stereo_48.dat', | 372 '<(DEPTH)/resources/short_mixed_stereo_48.dat', |
368 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', | 373 '<(DEPTH)/resources/short_mixed_stereo_48.pcm', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'sources': [ | 480 'sources': [ |
476 'modules_unittests.isolate', | 481 'modules_unittests.isolate', |
477 ], | 482 ], |
478 }, | 483 }, |
479 ], | 484 ], |
480 }], | 485 }], |
481 ], | 486 ], |
482 }], # include_tests | 487 }], # include_tests |
483 ], # conditions | 488 ], # conditions |
484 } | 489 } |
OLD | NEW |