• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2021-2022 Huawei Device Co., Ltd.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6#     http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14group("audio_unit_test") {
15  testonly = true
16
17  deps = [
18    "unittest/capturer_test:audio_capturer_unit_test",
19    "unittest/group_manager_test:audio_group_manager_unit_test",
20    "unittest/manager_test:audio_manager_unit_test",
21    "unittest/opensles_capture_test:audio_opensles_capture_unit_test",
22    "unittest/opensles_test:audio_opensles_unit_test",
23    "unittest/policy_test:audio_policy_unit_test",
24    "unittest/renderer_test:audio_renderer_unit_test",
25    "unittest/routing_manager_test:audio_routing_manager_test",
26    "unittest/stream_manager_test:audio_stream_manager_unit_test",
27    "unittest/stream_test:audio_stream_unit_test",
28    "unittest/volume_change_test:audio_volume_change_unit_test",
29    "../services/audio_service/test/unittest:audio_balance_unit_test",
30  ]
31}
32
33group("audio_module_test") {
34  testonly = true
35
36  deps = [ "moduletest/audiopolicy:audio_policy_module_test" ]
37}
38
39group("audio_fuzz_test") {
40  testonly = true
41
42  deps = [
43    "fuzztest/audiomanager_fuzzer:fuzztest",
44    "fuzztest/audiopolicy_fuzzer:fuzztest",
45    "fuzztest/audiopolicyanother_fuzzer:fuzztest",
46    "fuzztest/audioserver_fuzzer:fuzztest",
47    "fuzztest/audioserverbalance_fuzzer:fuzztest",
48    "fuzztest/audiostreamcollector_fuzzer:fuzztest",
49  ]
50}
51