OLD | NEW |
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "voice_detection_impl.cc", | 133 "voice_detection_impl.cc", |
134 "voice_detection_impl.h", | 134 "voice_detection_impl.h", |
135 ] | 135 ] |
136 | 136 |
137 configs += [ "../..:common_config" ] | 137 configs += [ "../..:common_config" ] |
138 public_configs = [ "../..:common_inherited_config" ] | 138 public_configs = [ "../..:common_inherited_config" ] |
139 | 139 |
140 defines = [] | 140 defines = [] |
141 deps = [ | 141 deps = [ |
142 "../..:webrtc_common", | 142 "../..:webrtc_common", |
| 143 "../audio_coding:isac", |
143 ] | 144 ] |
144 | 145 |
145 if (aec_debug_dump) { | 146 if (aec_debug_dump) { |
146 defines += [ "WEBRTC_AEC_DEBUG_DUMP" ] | 147 defines += [ "WEBRTC_AEC_DEBUG_DUMP" ] |
147 } | 148 } |
148 | 149 |
149 if (aec_untrusted_delay_for_testing) { | 150 if (aec_untrusted_delay_for_testing) { |
150 defines += [ "WEBRTC_UNTRUSTED_DELAY" ] | 151 defines += [ "WEBRTC_UNTRUSTED_DELAY" ] |
151 } | 152 } |
152 | 153 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 } | 275 } |
275 | 276 |
276 configs += [ "../..:common_config" ] | 277 configs += [ "../..:common_config" ] |
277 public_configs = [ "../..:common_inherited_config" ] | 278 public_configs = [ "../..:common_inherited_config" ] |
278 | 279 |
279 deps = [ | 280 deps = [ |
280 "../../common_audio", | 281 "../../common_audio", |
281 ] | 282 ] |
282 } | 283 } |
283 } | 284 } |
OLD | NEW |