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

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

Issue 1947743004: Removed the file echo_cancellation_internal.h and moved the file content to echo_cancellation.h. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@NewLogging2_CL
Patch Set: Updated buildfiles with the removed file Created 4 years, 7 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 | « no previous file | webrtc/modules/audio_processing/aec/echo_cancellation.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("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 13 matching lines...) Expand all
24 sources = [ 24 sources = [
25 "aec/aec_core.cc", 25 "aec/aec_core.cc",
26 "aec/aec_core.h", 26 "aec/aec_core.h",
27 "aec/aec_core_internal.h", 27 "aec/aec_core_internal.h",
28 "aec/aec_rdft.cc", 28 "aec/aec_rdft.cc",
29 "aec/aec_rdft.h", 29 "aec/aec_rdft.h",
30 "aec/aec_resampler.cc", 30 "aec/aec_resampler.cc",
31 "aec/aec_resampler.h", 31 "aec/aec_resampler.h",
32 "aec/echo_cancellation.cc", 32 "aec/echo_cancellation.cc",
33 "aec/echo_cancellation.h", 33 "aec/echo_cancellation.h",
34 "aec/echo_cancellation_internal.h",
35 "aecm/aecm_core.cc", 34 "aecm/aecm_core.cc",
36 "aecm/aecm_core.h", 35 "aecm/aecm_core.h",
37 "aecm/echo_control_mobile.cc", 36 "aecm/echo_control_mobile.cc",
38 "aecm/echo_control_mobile.h", 37 "aecm/echo_control_mobile.h",
39 "agc/agc.cc", 38 "agc/agc.cc",
40 "agc/agc.h", 39 "agc/agc.h",
41 "agc/agc_manager_direct.cc", 40 "agc/agc_manager_direct.cc",
42 "agc/agc_manager_direct.h", 41 "agc/agc_manager_direct.h",
43 "agc/gain_map_internal.h", 42 "agc/gain_map_internal.h",
44 "agc/histogram.cc", 43 "agc/histogram.cc",
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 "../../common_audio", 292 "../../common_audio",
294 ] 293 ]
295 294
296 if (aec_debug_dump) { 295 if (aec_debug_dump) {
297 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] 296 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ]
298 } else { 297 } else {
299 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] 298 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ]
300 } 299 }
301 } 300 }
302 } 301 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/echo_cancellation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698