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

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 1772553002: Removed the ProcessingComponent class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@RemoveComponentFromAGC_CL
Patch Set: Changed file name of the queue verifier Created 4 years, 9 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) 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("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "intelligibility/intelligibility_enhancer.h", 79 "intelligibility/intelligibility_enhancer.h",
80 "intelligibility/intelligibility_utils.cc", 80 "intelligibility/intelligibility_utils.cc",
81 "intelligibility/intelligibility_utils.h", 81 "intelligibility/intelligibility_utils.h",
82 "level_estimator_impl.cc", 82 "level_estimator_impl.cc",
83 "level_estimator_impl.h", 83 "level_estimator_impl.h",
84 "logging/aec_logging.h", 84 "logging/aec_logging.h",
85 "logging/aec_logging_file_handling.cc", 85 "logging/aec_logging_file_handling.cc",
86 "logging/aec_logging_file_handling.h", 86 "logging/aec_logging_file_handling.h",
87 "noise_suppression_impl.cc", 87 "noise_suppression_impl.cc",
88 "noise_suppression_impl.h", 88 "noise_suppression_impl.h",
89 "processing_component.cc", 89 "render_queues_verifier.h",
the sun 2016/03/09 09:45:47 did you try compiling? :)
peah-webrtc 2016/03/09 10:22:52 Good find! Yes, it actually builds regardless of t
90 "processing_component.h",
91 "rms_level.cc", 90 "rms_level.cc",
92 "rms_level.h", 91 "rms_level.h",
93 "splitting_filter.cc", 92 "splitting_filter.cc",
94 "splitting_filter.h", 93 "splitting_filter.h",
95 "three_band_filter_bank.cc", 94 "three_band_filter_bank.cc",
96 "three_band_filter_bank.h", 95 "three_band_filter_bank.h",
97 "transient/common.h", 96 "transient/common.h",
98 "transient/daubechies_8_wavelet_coeffs.h", 97 "transient/daubechies_8_wavelet_coeffs.h",
99 "transient/dyadic_decimator.h", 98 "transient/dyadic_decimator.h",
100 "transient/moving_moments.cc", 99 "transient/moving_moments.cc",
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 } 278 }
280 279
281 configs += [ "../..:common_config" ] 280 configs += [ "../..:common_config" ]
282 public_configs = [ "../..:common_inherited_config" ] 281 public_configs = [ "../..:common_inherited_config" ]
283 282
284 deps = [ 283 deps = [
285 "../../common_audio", 284 "../../common_audio",
286 ] 285 ]
287 } 286 }
288 } 287 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698