| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "../../system_wrappers", | 223 "../../system_wrappers", |
| 224 ] | 224 ] |
| 225 } | 225 } |
| 226 | 226 |
| 227 if (rtc_enable_protobuf) { | 227 if (rtc_enable_protobuf) { |
| 228 proto_library("audioproc_debug_proto") { | 228 proto_library("audioproc_debug_proto") { |
| 229 sources = [ | 229 sources = [ |
| 230 "debug.proto", | 230 "debug.proto", |
| 231 ] | 231 ] |
| 232 | 232 |
| 233 proto_out_dir = "webrtc/audio_processing" | 233 proto_out_dir = "webrtc/modules/audio_processing" |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 | 236 |
| 237 if (current_cpu == "x86" || current_cpu == "x64") { | 237 if (current_cpu == "x86" || current_cpu == "x64") { |
| 238 source_set("audio_processing_sse2") { | 238 source_set("audio_processing_sse2") { |
| 239 sources = [ | 239 sources = [ |
| 240 "aec/aec_core_sse2.c", | 240 "aec/aec_core_sse2.c", |
| 241 "aec/aec_rdft_sse2.c", | 241 "aec/aec_rdft_sse2.c", |
| 242 ] | 242 ] |
| 243 | 243 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 } | 277 } |
| 278 | 278 |
| 279 configs += [ "../..:common_config" ] | 279 configs += [ "../..:common_config" ] |
| 280 public_configs = [ "../..:common_inherited_config" ] | 280 public_configs = [ "../..:common_inherited_config" ] |
| 281 | 281 |
| 282 deps = [ | 282 deps = [ |
| 283 "../../common_audio", | 283 "../../common_audio", |
| 284 ] | 284 ] |
| 285 } | 285 } |
| 286 } | 286 } |
| OLD | NEW |