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

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

Issue 1856323002: Revert of Moved ring-buffer related files from common_audio to audio_processing (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « webrtc/common_audio/blocker_unittest.cc ('k') | webrtc/common_audio/lapped_transform.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 13 matching lines...) Expand all
24 'direct_dependent_settings': { 24 'direct_dependent_settings': {
25 'include_dirs': [ 25 'include_dirs': [
26 'resampler/include', 26 'resampler/include',
27 'signal_processing/include', 27 'signal_processing/include',
28 'vad/include', 28 'vad/include',
29 ], 29 ],
30 }, 30 },
31 'sources': [ 31 'sources': [
32 'audio_converter.cc', 32 'audio_converter.cc',
33 'audio_converter.h', 33 'audio_converter.h',
34 'audio_ring_buffer.cc',
35 'audio_ring_buffer.h',
34 'audio_util.cc', 36 'audio_util.cc',
37 'blocker.cc',
38 'blocker.h',
35 'channel_buffer.cc', 39 'channel_buffer.cc',
36 'channel_buffer.h', 40 'channel_buffer.h',
37 'fft4g.c', 41 'fft4g.c',
38 'fft4g.h', 42 'fft4g.h',
39 'fir_filter.cc', 43 'fir_filter.cc',
40 'fir_filter.h', 44 'fir_filter.h',
41 'fir_filter_neon.h', 45 'fir_filter_neon.h',
42 'fir_filter_sse.h', 46 'fir_filter_sse.h',
43 'include/audio_util.h', 47 'include/audio_util.h',
48 'lapped_transform.cc',
49 'lapped_transform.h',
44 'real_fourier.cc', 50 'real_fourier.cc',
45 'real_fourier.h', 51 'real_fourier.h',
46 'real_fourier_ooura.cc', 52 'real_fourier_ooura.cc',
47 'real_fourier_ooura.h', 53 'real_fourier_ooura.h',
48 'resampler/include/push_resampler.h', 54 'resampler/include/push_resampler.h',
49 'resampler/include/resampler.h', 55 'resampler/include/resampler.h',
50 'resampler/push_resampler.cc', 56 'resampler/push_resampler.cc',
51 'resampler/push_sinc_resampler.cc', 57 'resampler/push_sinc_resampler.cc',
52 'resampler/push_sinc_resampler.h', 58 'resampler/push_sinc_resampler.h',
53 'resampler/resampler.cc', 59 'resampler/resampler.cc',
54 'resampler/sinc_resampler.cc', 60 'resampler/sinc_resampler.cc',
55 'resampler/sinc_resampler.h', 61 'resampler/sinc_resampler.h',
62 'ring_buffer.c',
63 'ring_buffer.h',
56 'signal_processing/include/real_fft.h', 64 'signal_processing/include/real_fft.h',
57 'signal_processing/include/signal_processing_library.h', 65 'signal_processing/include/signal_processing_library.h',
58 'signal_processing/include/spl_inl.h', 66 'signal_processing/include/spl_inl.h',
59 'signal_processing/auto_corr_to_refl_coef.c', 67 'signal_processing/auto_corr_to_refl_coef.c',
60 'signal_processing/auto_correlation.c', 68 'signal_processing/auto_correlation.c',
61 'signal_processing/complex_fft.c', 69 'signal_processing/complex_fft.c',
62 'signal_processing/complex_fft_tables.h', 70 'signal_processing/complex_fft_tables.h',
63 'signal_processing/complex_bit_reverse.c', 71 'signal_processing/complex_bit_reverse.c',
64 'signal_processing/copy_set_operations.c', 72 'signal_processing/copy_set_operations.c',
65 'signal_processing/cross_correlation.c', 73 'signal_processing/cross_correlation.c',
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 'target_name': 'common_audio_unittests', 233 'target_name': 'common_audio_unittests',
226 'type': '<(gtest_target_type)', 234 'type': '<(gtest_target_type)',
227 'dependencies': [ 235 'dependencies': [
228 'common_audio', 236 'common_audio',
229 '<(webrtc_root)/test/test.gyp:test_support_main', 237 '<(webrtc_root)/test/test.gyp:test_support_main',
230 '<(DEPTH)/testing/gmock.gyp:gmock', 238 '<(DEPTH)/testing/gmock.gyp:gmock',
231 '<(DEPTH)/testing/gtest.gyp:gtest', 239 '<(DEPTH)/testing/gtest.gyp:gtest',
232 ], 240 ],
233 'sources': [ 241 'sources': [
234 'audio_converter_unittest.cc', 242 'audio_converter_unittest.cc',
243 'audio_ring_buffer_unittest.cc',
235 'audio_util_unittest.cc', 244 'audio_util_unittest.cc',
245 'blocker_unittest.cc',
236 'fir_filter_unittest.cc', 246 'fir_filter_unittest.cc',
247 'lapped_transform_unittest.cc',
237 'real_fourier_unittest.cc', 248 'real_fourier_unittest.cc',
238 'resampler/resampler_unittest.cc', 249 'resampler/resampler_unittest.cc',
239 'resampler/push_resampler_unittest.cc', 250 'resampler/push_resampler_unittest.cc',
240 'resampler/push_sinc_resampler_unittest.cc', 251 'resampler/push_sinc_resampler_unittest.cc',
241 'resampler/sinusoidal_linear_chirp_source.cc', 252 'resampler/sinusoidal_linear_chirp_source.cc',
242 'resampler/sinusoidal_linear_chirp_source.h', 253 'resampler/sinusoidal_linear_chirp_source.h',
254 'ring_buffer_unittest.cc',
243 'signal_processing/real_fft_unittest.cc', 255 'signal_processing/real_fft_unittest.cc',
244 'signal_processing/signal_processing_unittest.cc', 256 'signal_processing/signal_processing_unittest.cc',
245 'sparse_fir_filter_unittest.cc', 257 'sparse_fir_filter_unittest.cc',
246 'vad/vad_core_unittest.cc', 258 'vad/vad_core_unittest.cc',
247 'vad/vad_filterbank_unittest.cc', 259 'vad/vad_filterbank_unittest.cc',
248 'vad/vad_gmm_unittest.cc', 260 'vad/vad_gmm_unittest.cc',
249 'vad/vad_sp_unittest.cc', 261 'vad/vad_sp_unittest.cc',
250 'vad/vad_unittest.cc', 262 'vad/vad_unittest.cc',
251 'vad/vad_unittest.h', 263 'vad/vad_unittest.h',
252 'wav_header_unittest.cc', 264 'wav_header_unittest.cc',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'sources': [ 309 'sources': [
298 'common_audio_unittests.isolate', 310 'common_audio_unittests.isolate',
299 ], 311 ],
300 }, 312 },
301 ], 313 ],
302 }], 314 }],
303 ], 315 ],
304 }], 316 }],
305 ], # conditions 317 ], # conditions
306 } 318 }
OLDNEW
« no previous file with comments | « webrtc/common_audio/blocker_unittest.cc ('k') | webrtc/common_audio/lapped_transform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698