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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 "transient/file_utils.h", | 438 "transient/file_utils.h", |
439 "transient/transient_suppression_test.cc", | 439 "transient/transient_suppression_test.cc", |
440 ] | 440 ] |
441 deps = [ | 441 deps = [ |
442 ":audio_processing", | 442 ":audio_processing", |
443 "../../system_wrappers:metrics_default", | 443 "../../system_wrappers:metrics_default", |
444 "../../test:test_support", | 444 "../../test:test_support", |
445 "//testing/gtest", | 445 "//testing/gtest", |
446 "//third_party/gflags", | 446 "//third_party/gflags", |
447 ] | 447 ] |
448 if (is_clang) { | |
449 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | |
450 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
451 } | |
452 } | 448 } |
453 | 449 |
454 executable("click_annotate") { | 450 executable("click_annotate") { |
455 testonly = true | 451 testonly = true |
456 sources = [ | 452 sources = [ |
457 "transient/click_annotate.cc", | 453 "transient/click_annotate.cc", |
458 "transient/file_utils.cc", | 454 "transient/file_utils.cc", |
459 "transient/file_utils.h", | 455 "transient/file_utils.h", |
460 ] | 456 ] |
461 deps = [ | 457 deps = [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 "test/protobuf_utils.cc", | 509 "test/protobuf_utils.cc", |
514 "test/protobuf_utils.h", | 510 "test/protobuf_utils.h", |
515 ] | 511 ] |
516 | 512 |
517 deps = [ | 513 deps = [ |
518 ":audioproc_debug_proto", | 514 ":audioproc_debug_proto", |
519 ] | 515 ] |
520 } | 516 } |
521 } | 517 } |
522 } | 518 } |
OLD | NEW |