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

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

Issue 2532523002: Move smoothing filter to common audio and exp_filter to base/analytics. (Closed)
Patch Set: typo Created 4 years 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/exp_filter_unittest.cc ('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",
89 "sparse_fir_filter.cc", 91 "sparse_fir_filter.cc",
90 "sparse_fir_filter.h", 92 "sparse_fir_filter.h",
91 "vad/include/vad.h", 93 "vad/include/vad.h",
92 "vad/include/webrtc_vad.h", 94 "vad/include/webrtc_vad.h",
93 "vad/vad.cc", 95 "vad/vad.cc",
94 "vad/vad_core.c", 96 "vad/vad_core.c",
95 "vad/vad_core.h", 97 "vad/vad_core.h",
96 "vad/vad_filterbank.c", 98 "vad/vad_filterbank.c",
97 "vad/vad_filterbank.h", 99 "vad/vad_filterbank.h",
98 "vad/vad_gmm.c", 100 "vad/vad_gmm.c",
99 "vad/vad_gmm.h", 101 "vad/vad_gmm.h",
100 "vad/vad_sp.c", 102 "vad/vad_sp.c",
101 "vad/vad_sp.h", 103 "vad/vad_sp.h",
102 "vad/webrtc_vad.c", 104 "vad/webrtc_vad.c",
103 "wav_file.cc", 105 "wav_file.cc",
104 "wav_file.h", 106 "wav_file.h",
105 "wav_header.cc", 107 "wav_header.cc",
106 "wav_header.h", 108 "wav_header.h",
107 "window_generator.cc", 109 "window_generator.cc",
108 "window_generator.h", 110 "window_generator.h",
109 ] 111 ]
110 112
111 deps = [ 113 deps = [
114 "../base:rtc_analytics",
112 "../system_wrappers", 115 "../system_wrappers",
113 ] 116 ]
114 117
115 defines = [] 118 defines = []
116 if (rtc_use_openmax_dl) { 119 if (rtc_use_openmax_dl) {
117 sources += [ 120 sources += [
118 "real_fourier_openmax.cc", 121 "real_fourier_openmax.cc",
119 "real_fourier_openmax.h", 122 "real_fourier_openmax.h",
120 ] 123 ]
121 defines += [ "RTC_USE_OPENMAX_DL" ] 124 defines += [ "RTC_USE_OPENMAX_DL" ]
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 "lapped_transform_unittest.cc", 253 "lapped_transform_unittest.cc",
251 "real_fourier_unittest.cc", 254 "real_fourier_unittest.cc",
252 "resampler/push_resampler_unittest.cc", 255 "resampler/push_resampler_unittest.cc",
253 "resampler/push_sinc_resampler_unittest.cc", 256 "resampler/push_sinc_resampler_unittest.cc",
254 "resampler/resampler_unittest.cc", 257 "resampler/resampler_unittest.cc",
255 "resampler/sinusoidal_linear_chirp_source.cc", 258 "resampler/sinusoidal_linear_chirp_source.cc",
256 "resampler/sinusoidal_linear_chirp_source.h", 259 "resampler/sinusoidal_linear_chirp_source.h",
257 "ring_buffer_unittest.cc", 260 "ring_buffer_unittest.cc",
258 "signal_processing/real_fft_unittest.cc", 261 "signal_processing/real_fft_unittest.cc",
259 "signal_processing/signal_processing_unittest.cc", 262 "signal_processing/signal_processing_unittest.cc",
263 "smoothing_filter_unittest.cc",
260 "sparse_fir_filter_unittest.cc", 264 "sparse_fir_filter_unittest.cc",
261 "vad/vad_core_unittest.cc", 265 "vad/vad_core_unittest.cc",
262 "vad/vad_filterbank_unittest.cc", 266 "vad/vad_filterbank_unittest.cc",
263 "vad/vad_gmm_unittest.cc", 267 "vad/vad_gmm_unittest.cc",
264 "vad/vad_sp_unittest.cc", 268 "vad/vad_sp_unittest.cc",
265 "vad/vad_unittest.cc", 269 "vad/vad_unittest.cc",
266 "vad/vad_unittest.h", 270 "vad/vad_unittest.h",
267 "wav_file_unittest.cc", 271 "wav_file_unittest.cc",
268 "wav_header_unittest.cc", 272 "wav_header_unittest.cc",
269 "window_generator_unittest.cc", 273 "window_generator_unittest.cc",
(...skipping 20 matching lines...) Expand all
290 "//testing/gtest", 294 "//testing/gtest",
291 ] 295 ]
292 296
293 if (is_android) { 297 if (is_android) {
294 deps += [ "//testing/android/native_test:native_test_support" ] 298 deps += [ "//testing/android/native_test:native_test_support" ]
295 299
296 shard_timeout = 900 300 shard_timeout = 900
297 } 301 }
298 } 302 }
299 } 303 }
OLDNEW
« no previous file with comments | « webrtc/base/exp_filter_unittest.cc ('k') | webrtc/common_audio/mocks/mock_smoothing_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698