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

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

Issue 2424173003: Move functionality out from AudioFrame and into AudioFrameOperations. (Closed)
Patch Set: Include order & DCHECKs. 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/modules/audio_mixer/audio_mixer_impl.cc ('k') | webrtc/modules/audio_processing/DEPS » ('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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "vad/voice_activity_detector.cc", 158 "vad/voice_activity_detector.cc",
159 "vad/voice_activity_detector.h", 159 "vad/voice_activity_detector.h",
160 "vad/voice_gmm_tables.h", 160 "vad/voice_gmm_tables.h",
161 "voice_detection_impl.cc", 161 "voice_detection_impl.cc",
162 "voice_detection_impl.h", 162 "voice_detection_impl.h",
163 ] 163 ]
164 164
165 defines = [] 165 defines = []
166 deps = [ 166 deps = [
167 "../..:webrtc_common", 167 "../..:webrtc_common",
168 "../../audio/utility:audio_frame_operations",
168 "../audio_coding:isac", 169 "../audio_coding:isac",
169 ] 170 ]
170 171
171 if (apm_debug_dump) { 172 if (apm_debug_dump) {
172 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] 173 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ]
173 } else { 174 } else {
174 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] 175 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ]
175 } 176 }
176 177
177 if (aec_untrusted_delay_for_testing) { 178 if (aec_untrusted_delay_for_testing) {
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 "test/protobuf_utils.cc", 475 "test/protobuf_utils.cc",
475 "test/protobuf_utils.h", 476 "test/protobuf_utils.h",
476 ] 477 ]
477 478
478 deps = [ 479 deps = [
479 ":audioproc_debug_proto", 480 ":audioproc_debug_proto",
480 ] 481 ]
481 } 482 }
482 } 483 }
483 } 484 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_mixer/audio_mixer_impl.cc ('k') | webrtc/modules/audio_processing/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698