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

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

Issue 2424173003: Move functionality out from AudioFrame and into AudioFrameOperations. (Closed)
Patch Set: Created 4 years, 2 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 "vad/voice_activity_detector.h", 151 "vad/voice_activity_detector.h",
152 "vad/voice_gmm_tables.h", 152 "vad/voice_gmm_tables.h",
153 "voice_detection_impl.cc", 153 "voice_detection_impl.cc",
154 "voice_detection_impl.h", 154 "voice_detection_impl.h",
155 ] 155 ]
156 156
157 defines = [] 157 defines = []
158 deps = [ 158 deps = [
159 "../..:webrtc_common", 159 "../..:webrtc_common",
160 "../audio_coding:isac", 160 "../audio_coding:isac",
161 "../utility:audio_frame_operations",
161 ] 162 ]
162 163
163 if (apm_debug_dump) { 164 if (apm_debug_dump) {
164 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] 165 defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ]
165 } else { 166 } else {
166 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] 167 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ]
167 } 168 }
168 169
169 if (aec_untrusted_delay_for_testing) { 170 if (aec_untrusted_delay_for_testing) {
170 defines += [ "WEBRTC_UNTRUSTED_DELAY" ] 171 defines += [ "WEBRTC_UNTRUSTED_DELAY" ]
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "test/protobuf_utils.cc", 443 "test/protobuf_utils.cc",
443 "test/protobuf_utils.h", 444 "test/protobuf_utils.h",
444 ] 445 ]
445 446
446 deps = [ 447 deps = [
447 ":audioproc_debug_proto", 448 ":audioproc_debug_proto",
448 ] 449 ]
449 } 450 }
450 } 451 }
451 } 452 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698