| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 if (apm_debug_dump) { | 307 if (apm_debug_dump) { |
| 308 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 308 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
| 309 } else { | 309 } else { |
| 310 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ] | 310 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ] |
| 311 } | 311 } |
| 312 } | 312 } |
| 313 } | 313 } |
| 314 | 314 |
| 315 if (rtc_include_tests) { | 315 if (rtc_include_tests) { |
| 316 group("audio_processing_tests") { |
| 317 testonly = true |
| 318 public_deps = [ |
| 319 ":audioproc_f", |
| 320 ":audioproc_test_utils", |
| 321 ":click_annotate", |
| 322 ":nonlinear_beamformer_test", |
| 323 ":transient_suppression_test", |
| 324 ":unpack_aecdump", |
| 325 ] |
| 326 |
| 327 if (rtc_enable_intelligibility_enhancer) { |
| 328 public_deps += [ ":intelligibility_proc" ] |
| 329 } |
| 330 |
| 331 if (rtc_enable_protobuf) { |
| 332 public_deps += [ ":audioproc_unittest_proto" ] |
| 333 } |
| 334 } |
| 335 |
| 316 rtc_executable("unpack_aecdump") { | 336 rtc_executable("unpack_aecdump") { |
| 317 testonly = true | 337 testonly = true |
| 318 sources = [ | 338 sources = [ |
| 319 "test/unpack.cc", | 339 "test/unpack.cc", |
| 320 ] | 340 ] |
| 321 | 341 |
| 322 deps = [ | 342 deps = [ |
| 323 ":audio_processing", | 343 ":audio_processing", |
| 324 ":audioproc_debug_proto", | 344 ":audioproc_debug_proto", |
| 325 ":audioproc_protobuf_utils", | 345 ":audioproc_protobuf_utils", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "test/protobuf_utils.cc", | 462 "test/protobuf_utils.cc", |
| 443 "test/protobuf_utils.h", | 463 "test/protobuf_utils.h", |
| 444 ] | 464 ] |
| 445 | 465 |
| 446 deps = [ | 466 deps = [ |
| 447 ":audioproc_debug_proto", | 467 ":audioproc_debug_proto", |
| 448 ] | 468 ] |
| 449 } | 469 } |
| 450 } | 470 } |
| 451 } | 471 } |
| OLD | NEW |