| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 } | 500 } |
| 501 } | 501 } |
| 502 | 502 |
| 503 rtc_source_set("audio_processing_unittests") { | 503 rtc_source_set("audio_processing_unittests") { |
| 504 testonly = true | 504 testonly = true |
| 505 | 505 |
| 506 # Skip restricting visibility on mobile platforms since the tests on those | 506 # Skip restricting visibility on mobile platforms since the tests on those |
| 507 # gets additional generated targets which would require many lines here to | 507 # gets additional generated targets which would require many lines here to |
| 508 # cover (which would be confusing to read and hard to maintain). | 508 # cover (which would be confusing to read and hard to maintain). |
| 509 if (!is_android && !is_ios) { | 509 if (!is_android && !is_ios) { |
| 510 visibility = [ "//webrtc/modules:modules_unittests" ] | 510 visibility = [ "..:modules_unittests" ] |
| 511 } | 511 } |
| 512 sources = [ | 512 sources = [ |
| 513 "aec/echo_cancellation_unittest.cc", | 513 "aec/echo_cancellation_unittest.cc", |
| 514 "aec/system_delay_unittest.cc", | 514 "aec/system_delay_unittest.cc", |
| 515 "agc/agc_manager_direct_unittest.cc", | 515 "agc/agc_manager_direct_unittest.cc", |
| 516 "agc/loudness_histogram_unittest.cc", | 516 "agc/loudness_histogram_unittest.cc", |
| 517 "agc/mock_agc.h", | 517 "agc/mock_agc.h", |
| 518 "audio_buffer_unittest.cc", | 518 "audio_buffer_unittest.cc", |
| 519 "beamformer/array_util_unittest.cc", | 519 "beamformer/array_util_unittest.cc", |
| 520 "beamformer/complex_matrix_unittest.cc", | 520 "beamformer/complex_matrix_unittest.cc", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 # //webrtc/modules:modules_unittests_apk__create__finalize --> | 679 # //webrtc/modules:modules_unittests_apk__create__finalize --> |
| 680 # //webrtc/modules:modules_unittests_apk__create__package --[private]--> | 680 # //webrtc/modules:modules_unittests_apk__create__package --[private]--> |
| 681 # //webrtc/modules:_modules_unittests__library | 681 # //webrtc/modules:_modules_unittests__library |
| 682 check_includes = false | 682 check_includes = false |
| 683 testonly = true | 683 testonly = true |
| 684 | 684 |
| 685 # Skip restricting visibility on mobile platforms since the tests on those | 685 # Skip restricting visibility on mobile platforms since the tests on those |
| 686 # gets additional generated targets which would require many lines here to | 686 # gets additional generated targets which would require many lines here to |
| 687 # cover (which would be confusing to read and hard to maintain). | 687 # cover (which would be confusing to read and hard to maintain). |
| 688 if (!is_android && !is_ios) { | 688 if (!is_android && !is_ios) { |
| 689 visibility = [ "//webrtc:webrtc_perf_tests" ] | 689 visibility = [ "../..:webrtc_perf_tests" ] |
| 690 } | 690 } |
| 691 sources = [ | 691 sources = [ |
| 692 "audio_processing_performance_unittest.cc", | 692 "audio_processing_performance_unittest.cc", |
| 693 "level_controller/level_controller_complexity_unittest.cc", | 693 "level_controller/level_controller_complexity_unittest.cc", |
| 694 "residual_echo_detector_complexity_unittest.cc", | 694 "residual_echo_detector_complexity_unittest.cc", |
| 695 ] | 695 ] |
| 696 deps = [ | 696 deps = [ |
| 697 ":audio_processing", | 697 ":audio_processing", |
| 698 ":audioproc_test_utils", | 698 ":audioproc_test_utils", |
| 699 "../../base:protobuf_utils", | 699 "../../base:protobuf_utils", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 | 865 |
| 866 deps = [ | 866 deps = [ |
| 867 ":audioproc_debug_proto", | 867 ":audioproc_debug_proto", |
| 868 "../..:webrtc_common", | 868 "../..:webrtc_common", |
| 869 "../../base:protobuf_utils", | 869 "../../base:protobuf_utils", |
| 870 "../../base:rtc_base_approved", | 870 "../../base:rtc_base_approved", |
| 871 ] | 871 ] |
| 872 } | 872 } |
| 873 } | 873 } |
| 874 } | 874 } |
| OLD | NEW |