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

Side by Side Diff: webrtc/common_audio/BUILD.gn

Issue 2510373002: Revert of Move smoothing filter to common audio. (Closed)
Patch Set: Created 4 years, 1 month 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/base/BUILD.gn ('k') | webrtc/common_audio/mocks/mock_smoothing_filter.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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "signal_processing/resample_by_2.c", 79 "signal_processing/resample_by_2.c",
80 "signal_processing/resample_by_2_internal.c", 80 "signal_processing/resample_by_2_internal.c",
81 "signal_processing/resample_by_2_internal.h", 81 "signal_processing/resample_by_2_internal.h",
82 "signal_processing/resample_fractional.c", 82 "signal_processing/resample_fractional.c",
83 "signal_processing/spl_init.c", 83 "signal_processing/spl_init.c",
84 "signal_processing/spl_inl.c", 84 "signal_processing/spl_inl.c",
85 "signal_processing/spl_sqrt.c", 85 "signal_processing/spl_sqrt.c",
86 "signal_processing/splitting_filter.c", 86 "signal_processing/splitting_filter.c",
87 "signal_processing/sqrt_of_one_minus_x_squared.c", 87 "signal_processing/sqrt_of_one_minus_x_squared.c",
88 "signal_processing/vector_scaling_operations.c", 88 "signal_processing/vector_scaling_operations.c",
89 "smoothing_filter.cc",
90 "smoothing_filter.h",
91 "sparse_fir_filter.cc", 89 "sparse_fir_filter.cc",
92 "sparse_fir_filter.h", 90 "sparse_fir_filter.h",
93 "vad/include/vad.h", 91 "vad/include/vad.h",
94 "vad/include/webrtc_vad.h", 92 "vad/include/webrtc_vad.h",
95 "vad/vad.cc", 93 "vad/vad.cc",
96 "vad/vad_core.c", 94 "vad/vad_core.c",
97 "vad/vad_core.h", 95 "vad/vad_core.h",
98 "vad/vad_filterbank.c", 96 "vad/vad_filterbank.c",
99 "vad/vad_filterbank.h", 97 "vad/vad_filterbank.h",
100 "vad/vad_gmm.c", 98 "vad/vad_gmm.c",
101 "vad/vad_gmm.h", 99 "vad/vad_gmm.h",
102 "vad/vad_sp.c", 100 "vad/vad_sp.c",
103 "vad/vad_sp.h", 101 "vad/vad_sp.h",
104 "vad/webrtc_vad.c", 102 "vad/webrtc_vad.c",
105 "wav_file.cc", 103 "wav_file.cc",
106 "wav_file.h", 104 "wav_file.h",
107 "wav_header.cc", 105 "wav_header.cc",
108 "wav_header.h", 106 "wav_header.h",
109 "window_generator.cc", 107 "window_generator.cc",
110 "window_generator.h", 108 "window_generator.h",
111 ] 109 ]
112 110
113 deps = [ 111 deps = [
114 "../base:rtc_exp_filter",
115 "../system_wrappers", 112 "../system_wrappers",
116 ] 113 ]
117 114
118 defines = [] 115 defines = []
119 if (rtc_use_openmax_dl) { 116 if (rtc_use_openmax_dl) {
120 sources += [ 117 sources += [
121 "real_fourier_openmax.cc", 118 "real_fourier_openmax.cc",
122 "real_fourier_openmax.h", 119 "real_fourier_openmax.h",
123 ] 120 ]
124 defines += [ "RTC_USE_OPENMAX_DL" ] 121 defines += [ "RTC_USE_OPENMAX_DL" ]
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 "lapped_transform_unittest.cc", 250 "lapped_transform_unittest.cc",
254 "real_fourier_unittest.cc", 251 "real_fourier_unittest.cc",
255 "resampler/push_resampler_unittest.cc", 252 "resampler/push_resampler_unittest.cc",
256 "resampler/push_sinc_resampler_unittest.cc", 253 "resampler/push_sinc_resampler_unittest.cc",
257 "resampler/resampler_unittest.cc", 254 "resampler/resampler_unittest.cc",
258 "resampler/sinusoidal_linear_chirp_source.cc", 255 "resampler/sinusoidal_linear_chirp_source.cc",
259 "resampler/sinusoidal_linear_chirp_source.h", 256 "resampler/sinusoidal_linear_chirp_source.h",
260 "ring_buffer_unittest.cc", 257 "ring_buffer_unittest.cc",
261 "signal_processing/real_fft_unittest.cc", 258 "signal_processing/real_fft_unittest.cc",
262 "signal_processing/signal_processing_unittest.cc", 259 "signal_processing/signal_processing_unittest.cc",
263 "smoothing_filter_unittest.cc",
264 "sparse_fir_filter_unittest.cc", 260 "sparse_fir_filter_unittest.cc",
265 "vad/vad_core_unittest.cc", 261 "vad/vad_core_unittest.cc",
266 "vad/vad_filterbank_unittest.cc", 262 "vad/vad_filterbank_unittest.cc",
267 "vad/vad_gmm_unittest.cc", 263 "vad/vad_gmm_unittest.cc",
268 "vad/vad_sp_unittest.cc", 264 "vad/vad_sp_unittest.cc",
269 "vad/vad_unittest.cc", 265 "vad/vad_unittest.cc",
270 "vad/vad_unittest.h", 266 "vad/vad_unittest.h",
271 "wav_file_unittest.cc", 267 "wav_file_unittest.cc",
272 "wav_header_unittest.cc", 268 "wav_header_unittest.cc",
273 "window_generator_unittest.cc", 269 "window_generator_unittest.cc",
(...skipping 20 matching lines...) Expand all
294 "//testing/gtest", 290 "//testing/gtest",
295 ] 291 ]
296 292
297 if (is_android) { 293 if (is_android) {
298 deps += [ "//testing/android/native_test:native_test_support" ] 294 deps += [ "//testing/android/native_test:native_test_support" ]
299 295
300 shard_timeout = 900 296 shard_timeout = 900
301 } 297 }
302 } 298 }
303 } 299 }
OLDNEW
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | webrtc/common_audio/mocks/mock_smoothing_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698