| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 testonly = true | 472 testonly = true |
| 473 sources = [ | 473 sources = [ |
| 474 "beamformer/nonlinear_beamformer_test.cc", | 474 "beamformer/nonlinear_beamformer_test.cc", |
| 475 ] | 475 ] |
| 476 deps = [ | 476 deps = [ |
| 477 ":audio_processing", | 477 ":audio_processing", |
| 478 ":audioproc_test_utils", | 478 ":audioproc_test_utils", |
| 479 "../../system_wrappers:metrics_default", | 479 "../../system_wrappers:metrics_default", |
| 480 "//third_party/gflags", | 480 "//third_party/gflags", |
| 481 ] | 481 ] |
| 482 if (is_clang) { | |
| 483 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | |
| 484 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
| 485 } | |
| 486 } | 482 } |
| 487 | 483 |
| 488 if (rtc_enable_intelligibility_enhancer) { | 484 if (rtc_enable_intelligibility_enhancer) { |
| 489 executable("intelligibility_proc") { | 485 executable("intelligibility_proc") { |
| 490 testonly = true | 486 testonly = true |
| 491 sources = [ | 487 sources = [ |
| 492 "intelligibility/test/intelligibility_proc.cc", | 488 "intelligibility/test/intelligibility_proc.cc", |
| 493 ] | 489 ] |
| 494 deps = [ | 490 deps = [ |
| 495 ":audio_processing", | 491 ":audio_processing", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 519 "test/protobuf_utils.cc", | 515 "test/protobuf_utils.cc", |
| 520 "test/protobuf_utils.h", | 516 "test/protobuf_utils.h", |
| 521 ] | 517 ] |
| 522 | 518 |
| 523 deps = [ | 519 deps = [ |
| 524 ":audioproc_debug_proto", | 520 ":audioproc_debug_proto", |
| 525 ] | 521 ] |
| 526 } | 522 } |
| 527 } | 523 } |
| 528 } | 524 } |
| OLD | NEW |