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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 1851873003: Moved the ringbuffer to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@MoveRingBuffer_CL
Patch Set: Fixed warnings reported by cl upload 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
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 'variables': { 10 'variables': {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'utility/block_mean_calculator.h', 124 'utility/block_mean_calculator.h',
125 'utility/blocker.cc', 125 'utility/blocker.cc',
126 'utility/blocker.h', 126 'utility/blocker.h',
127 'utility/delay_estimator.c', 127 'utility/delay_estimator.c',
128 'utility/delay_estimator.h', 128 'utility/delay_estimator.h',
129 'utility/delay_estimator_internal.h', 129 'utility/delay_estimator_internal.h',
130 'utility/delay_estimator_wrapper.c', 130 'utility/delay_estimator_wrapper.c',
131 'utility/delay_estimator_wrapper.h', 131 'utility/delay_estimator_wrapper.h',
132 'utility/lapped_transform.cc', 132 'utility/lapped_transform.cc',
133 'utility/lapped_transform.h', 133 'utility/lapped_transform.h',
134 'utility/ring_buffer.c', 134 'utility/ring_buffer.cc',
135 'utility/ring_buffer.h', 135 'utility/ring_buffer.h',
136 'vad/common.h', 136 'vad/common.h',
137 'vad/gmm.cc', 137 'vad/gmm.cc',
138 'vad/gmm.h', 138 'vad/gmm.h',
139 'vad/noise_gmm_tables.h', 139 'vad/noise_gmm_tables.h',
140 'vad/pitch_based_vad.cc', 140 'vad/pitch_based_vad.cc',
141 'vad/pitch_based_vad.h', 141 'vad/pitch_based_vad.h',
142 'vad/pitch_internal.cc', 142 'vad/pitch_internal.cc',
143 'vad/pitch_internal.h', 143 'vad/pitch_internal.h',
144 'vad/pole_zero_filter.cc', 144 'vad/pole_zero_filter.cc',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'sources': [ 278 'sources': [
279 'aec/aec_core_neon.cc', 279 'aec/aec_core_neon.cc',
280 'aec/aec_rdft_neon.c', 280 'aec/aec_rdft_neon.c',
281 'aecm/aecm_core_neon.c', 281 'aecm/aecm_core_neon.c',
282 'ns/nsx_core_neon.c', 282 'ns/nsx_core_neon.c',
283 ], 283 ],
284 }], 284 }],
285 }], 285 }],
286 ], 286 ],
287 } 287 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698