Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: webrtc/modules/modules.gyp

Issue 1254883002: Refactor the AudioDevice for iOS and improve the performance and stability (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Extended unit test for FineAudioBuffer with recorded data Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'audio_coding/neteq/mock/mock_delay_manager.h', 151 'audio_coding/neteq/mock/mock_delay_manager.h',
152 'audio_coding/neteq/mock/mock_delay_peak_detector.h', 152 'audio_coding/neteq/mock/mock_delay_peak_detector.h',
153 'audio_coding/neteq/mock/mock_dtmf_buffer.h', 153 'audio_coding/neteq/mock/mock_dtmf_buffer.h',
154 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h', 154 'audio_coding/neteq/mock/mock_dtmf_tone_generator.h',
155 'audio_coding/neteq/mock/mock_expand.h', 155 'audio_coding/neteq/mock/mock_expand.h',
156 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h', 156 'audio_coding/neteq/mock/mock_external_decoder_pcm16b.h',
157 'audio_coding/neteq/mock/mock_packet_buffer.h', 157 'audio_coding/neteq/mock/mock_packet_buffer.h',
158 'audio_coding/neteq/mock/mock_payload_splitter.h', 158 'audio_coding/neteq/mock/mock_payload_splitter.h',
159 'audio_coding/neteq/tools/input_audio_file_unittest.cc', 159 'audio_coding/neteq/tools/input_audio_file_unittest.cc',
160 'audio_coding/neteq/tools/packet_unittest.cc', 160 'audio_coding/neteq/tools/packet_unittest.cc',
161 'audio_device/fine_audio_buffer_unittest.cc',
161 'audio_processing/aec/echo_cancellation_unittest.cc', 162 'audio_processing/aec/echo_cancellation_unittest.cc',
162 'audio_processing/aec/system_delay_unittest.cc', 163 'audio_processing/aec/system_delay_unittest.cc',
163 # TODO(ajm): Fix to match new interface. 164 # TODO(ajm): Fix to match new interface.
164 # 'audio_processing/agc/agc_unittest.cc', 165 # 'audio_processing/agc/agc_unittest.cc',
165 'audio_processing/agc/histogram_unittest.cc', 166 'audio_processing/agc/histogram_unittest.cc',
166 'audio_processing/agc/mock_agc.h', 167 'audio_processing/agc/mock_agc.h',
167 'audio_processing/beamformer/complex_matrix_unittest.cc', 168 'audio_processing/beamformer/complex_matrix_unittest.cc',
168 'audio_processing/beamformer/covariance_matrix_generator_unittest.cc ', 169 'audio_processing/beamformer/covariance_matrix_generator_unittest.cc ',
169 'audio_processing/beamformer/matrix_unittest.cc', 170 'audio_processing/beamformer/matrix_unittest.cc',
170 'audio_processing/beamformer/mock_nonlinear_beamformer.h', 171 'audio_processing/beamformer/mock_nonlinear_beamformer.h',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 # const BASE_EXPORT jobject GetApplicationContext() 348 # const BASE_EXPORT jobject GetApplicationContext()
348 # error: type qualifiers ignored on function return type 349 # error: type qualifiers ignored on function return type
349 'cflags': [ 350 'cflags': [
350 '-Wno-ignored-qualifiers', 351 '-Wno-ignored-qualifiers',
351 ], 352 ],
352 'sources': [ 353 'sources': [
353 'audio_device/android/audio_device_unittest.cc', 354 'audio_device/android/audio_device_unittest.cc',
354 'audio_device/android/audio_manager_unittest.cc', 355 'audio_device/android/audio_manager_unittest.cc',
355 'audio_device/android/ensure_initialized.cc', 356 'audio_device/android/ensure_initialized.cc',
356 'audio_device/android/ensure_initialized.h', 357 'audio_device/android/ensure_initialized.h',
357 'audio_device/android/fine_audio_buffer_unittest.cc',
358 ], 358 ],
359 }], 359 }],
360 ['OS=="ios"', { 360 ['OS=="ios"', {
361 'sources': [ 361 'sources': [
362 'video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc', 362 'video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc',
363 'audio_device/ios/audio_device_unittest_ios.cc', 363 'audio_device/ios/audio_device_unittest_ios.cc',
364 ], 364 ],
365 'mac_bundle_resources': [ 365 'mac_bundle_resources': [
366 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm', 366 '<(DEPTH)/resources/audio_coding/speech_mono_16kHz.pcm',
367 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm', 367 '<(DEPTH)/resources/audio_coding/testfile32kHz.pcm',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 'sources': [ 488 'sources': [
489 'modules_unittests.isolate', 489 'modules_unittests.isolate',
490 ], 490 ],
491 }, 491 },
492 ], 492 ],
493 }], 493 }],
494 ], 494 ],
495 }], # include_tests 495 }], # include_tests
496 ], # conditions 496 ], # conditions
497 } 497 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698