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

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

Issue 2615873002: Reland of actor webrtc_perf_tests into several source_sets. (Closed)
Patch Set: Pristine copy Created 3 years, 11 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
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/remote_bitrate_estimator/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 404
405 if (rtc_enable_intelligibility_enhancer) { 405 if (rtc_enable_intelligibility_enhancer) {
406 public_deps += [ ":intelligibility_proc" ] 406 public_deps += [ ":intelligibility_proc" ]
407 } 407 }
408 408
409 if (rtc_enable_protobuf) { 409 if (rtc_enable_protobuf) {
410 public_deps += [ ":audioproc_unittest_proto" ] 410 public_deps += [ ":audioproc_unittest_proto" ]
411 } 411 }
412 } 412 }
413 413
414 rtc_source_set("audio_processing_perf_tests") {
415 # Has problems with autogenerated targets on Android and iOS
416 # Dependency chain (there may also be others):
417 # //webrtc/modules/audio_processing:audio_processing_perf_tests -->
418 # //webrtc/modules:modules_unittests --[private]-->
419 # //webrtc/modules:modules_unittests_apk -->
420 # //webrtc/modules:modules_unittests_apk__create -->
421 # //webrtc/modules:modules_unittests_apk__create__finalize -->
422 # //webrtc/modules:modules_unittests_apk__create__package --[private]-->
423 # //webrtc/modules:_modules_unittests__library
424 check_includes = false
425 testonly = true
426 sources = [
427 "audio_processing_performance_unittest.cc",
428 "level_controller/level_controller_complexity_unittest.cc",
429 "residual_echo_detector_complexity_unittest.cc",
430 ]
431 deps = [
432 ":audio_processing",
433 ":audioproc_test_utils",
434 "//testing/gtest",
435 ]
436 if (rtc_enable_intelligibility_enhancer) {
437 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
438 } else {
439 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ]
440 }
441 }
442
414 rtc_executable("unpack_aecdump") { 443 rtc_executable("unpack_aecdump") {
415 testonly = true 444 testonly = true
416 sources = [ 445 sources = [
417 "test/unpack.cc", 446 "test/unpack.cc",
418 ] 447 ]
419 448
420 deps = [ 449 deps = [
421 ":audio_processing", 450 ":audio_processing",
422 ":audioproc_debug_proto", 451 ":audioproc_debug_proto",
423 ":audioproc_protobuf_utils", 452 ":audioproc_protobuf_utils",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 ] 588 ]
560 589
561 deps = [ 590 deps = [
562 ":audioproc_debug_proto", 591 ":audioproc_debug_proto",
563 "../..:webrtc_common", 592 "../..:webrtc_common",
564 "../../base:rtc_base_approved", 593 "../../base:rtc_base_approved",
565 ] 594 ]
566 } 595 }
567 } 596 }
568 } 597 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/remote_bitrate_estimator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698