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

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

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