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

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

Issue 1181933002: Pull the Voice Activity Detector out from the AGC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove unused files from isolate Created 5 years, 6 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/agc/agc.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 20 matching lines...) Expand all
31 "aec/aec_resampler.h", 31 "aec/aec_resampler.h",
32 "aec/echo_cancellation.c", 32 "aec/echo_cancellation.c",
33 "aec/echo_cancellation_internal.h", 33 "aec/echo_cancellation_internal.h",
34 "aec/include/echo_cancellation.h", 34 "aec/include/echo_cancellation.h",
35 "aecm/aecm_core.c", 35 "aecm/aecm_core.c",
36 "aecm/aecm_core.h", 36 "aecm/aecm_core.h",
37 "aecm/echo_control_mobile.c", 37 "aecm/echo_control_mobile.c",
38 "aecm/include/echo_control_mobile.h", 38 "aecm/include/echo_control_mobile.h",
39 "agc/agc.cc", 39 "agc/agc.cc",
40 "agc/agc.h", 40 "agc/agc.h",
41 "agc/agc_audio_proc.cc",
42 "agc/agc_audio_proc.h",
43 "agc/agc_audio_proc_internal.h",
44 "agc/agc_manager_direct.cc", 41 "agc/agc_manager_direct.cc",
45 "agc/agc_manager_direct.h", 42 "agc/agc_manager_direct.h",
46 "agc/circular_buffer.cc",
47 "agc/circular_buffer.h",
48 "agc/common.h",
49 "agc/gain_map_internal.h", 43 "agc/gain_map_internal.h",
50 "agc/gmm.cc",
51 "agc/gmm.h",
52 "agc/histogram.cc", 44 "agc/histogram.cc",
53 "agc/histogram.h", 45 "agc/histogram.h",
54 "agc/legacy/analog_agc.c", 46 "agc/legacy/analog_agc.c",
55 "agc/legacy/analog_agc.h", 47 "agc/legacy/analog_agc.h",
56 "agc/legacy/digital_agc.c", 48 "agc/legacy/digital_agc.c",
57 "agc/legacy/digital_agc.h", 49 "agc/legacy/digital_agc.h",
58 "agc/legacy/gain_control.h", 50 "agc/legacy/gain_control.h",
59 "agc/noise_gmm_tables.h",
60 "agc/pitch_based_vad.cc",
61 "agc/pitch_based_vad.h",
62 "agc/pitch_internal.cc",
63 "agc/pitch_internal.h",
64 "agc/pole_zero_filter.cc",
65 "agc/pole_zero_filter.h",
66 "agc/standalone_vad.cc",
67 "agc/standalone_vad.h",
68 "agc/utility.cc", 51 "agc/utility.cc",
69 "agc/utility.h", 52 "agc/utility.h",
70 "agc/voice_gmm_tables.h",
71 "audio_buffer.cc", 53 "audio_buffer.cc",
72 "audio_buffer.h", 54 "audio_buffer.h",
73 "audio_processing_impl.cc", 55 "audio_processing_impl.cc",
74 "audio_processing_impl.h", 56 "audio_processing_impl.h",
75 "beamformer/beamformer.h", 57 "beamformer/beamformer.h",
76 "beamformer/complex_matrix.h", 58 "beamformer/complex_matrix.h",
77 "beamformer/covariance_matrix_generator.cc", 59 "beamformer/covariance_matrix_generator.cc",
78 "beamformer/covariance_matrix_generator.h", 60 "beamformer/covariance_matrix_generator.h",
79 "beamformer/matrix.h", 61 "beamformer/matrix.h",
80 "beamformer/nonlinear_beamformer.cc", 62 "beamformer/nonlinear_beamformer.cc",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "transient/wpd_node.h", 96 "transient/wpd_node.h",
115 "transient/wpd_tree.cc", 97 "transient/wpd_tree.cc",
116 "transient/wpd_tree.h", 98 "transient/wpd_tree.h",
117 "typing_detection.cc", 99 "typing_detection.cc",
118 "typing_detection.h", 100 "typing_detection.h",
119 "utility/delay_estimator.c", 101 "utility/delay_estimator.c",
120 "utility/delay_estimator.h", 102 "utility/delay_estimator.h",
121 "utility/delay_estimator_internal.h", 103 "utility/delay_estimator_internal.h",
122 "utility/delay_estimator_wrapper.c", 104 "utility/delay_estimator_wrapper.c",
123 "utility/delay_estimator_wrapper.h", 105 "utility/delay_estimator_wrapper.h",
106 "vad/common.h",
107 "vad/gmm.cc",
108 "vad/gmm.h",
109 "vad/noise_gmm_tables.h",
110 "vad/pitch_based_vad.cc",
111 "vad/pitch_based_vad.h",
112 "vad/pitch_internal.cc",
113 "vad/pitch_internal.h",
114 "vad/pole_zero_filter.cc",
115 "vad/pole_zero_filter.h",
116 "vad/standalone_vad.cc",
117 "vad/standalone_vad.h",
118 "vad/vad_audio_proc.cc",
119 "vad/vad_audio_proc.h",
120 "vad/vad_audio_proc_internal.h",
121 "vad/vad_circular_buffer.cc",
122 "vad/vad_circular_buffer.h",
123 "vad/voice_activity_detector.cc",
124 "vad/voice_activity_detector.h",
125 "vad/voice_gmm_tables.h",
124 "voice_detection_impl.cc", 126 "voice_detection_impl.cc",
125 "voice_detection_impl.h", 127 "voice_detection_impl.h",
126 ] 128 ]
127 129
128 configs += [ "../..:common_config" ] 130 configs += [ "../..:common_config" ]
129 public_configs = [ "../..:common_inherited_config" ] 131 public_configs = [ "../..:common_inherited_config" ]
130 132
131 defines = [] 133 defines = []
132 deps = [ 134 deps = [
133 "../..:webrtc_common", 135 "../..:webrtc_common",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 271
270 # Disable LTO in audio_processing_neon target due to compiler bug. 272 # Disable LTO in audio_processing_neon target due to compiler bug.
271 if (rtc_use_lto) { 273 if (rtc_use_lto) {
272 cflags -= [ 274 cflags -= [
273 "-flto", 275 "-flto",
274 "-ffat-lto-objects", 276 "-ffat-lto-objects",
275 ] 277 ]
276 } 278 }
277 } 279 }
278 } 280 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/agc/agc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698