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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
426 | 426 |
427 if (rtc_enable_intelligibility_enhancer) { | 427 if (rtc_enable_intelligibility_enhancer) { |
428 public_deps += [ ":intelligibility_proc" ] | 428 public_deps += [ ":intelligibility_proc" ] |
429 } | 429 } |
430 | 430 |
431 if (rtc_enable_protobuf) { | 431 if (rtc_enable_protobuf) { |
432 public_deps += [ | 432 public_deps += [ |
433 ":audioproc_f", | 433 ":audioproc_f", |
434 ":audioproc_unittest_proto", | 434 ":audioproc_unittest_proto", |
435 ":unpack_aecdump", | 435 ":unpack_aecdump", |
436 "test/py_quality_assessment:py_quality_assessment", | |
aleloi
2017/02/23 14:48:24
Just "test/py_quality_assessment" is enough. GN in
| |
436 ] | 437 ] |
437 } | 438 } |
438 } | 439 } |
439 | 440 |
440 rtc_source_set("audio_processing_unittests") { | 441 rtc_source_set("audio_processing_unittests") { |
441 testonly = true | 442 testonly = true |
442 sources = [ | 443 sources = [ |
443 "aec/echo_cancellation_unittest.cc", | 444 "aec/echo_cancellation_unittest.cc", |
444 "aec/system_delay_unittest.cc", | 445 "aec/system_delay_unittest.cc", |
445 "agc/agc_manager_direct_unittest.cc", | 446 "agc/agc_manager_direct_unittest.cc", |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
753 ] | 754 ] |
754 | 755 |
755 deps = [ | 756 deps = [ |
756 ":audioproc_debug_proto", | 757 ":audioproc_debug_proto", |
757 "../..:webrtc_common", | 758 "../..:webrtc_common", |
758 "../../base:rtc_base_approved", | 759 "../../base:rtc_base_approved", |
759 ] | 760 ] |
760 } | 761 } |
761 } | 762 } |
762 } | 763 } |
OLD | NEW |