Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2711923002: Parallel iterator bash script for the quality assessment package. (Closed)
Patch Set: minor fix Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698