blob: f5d29392c9761571c5f3bd8390ed17b4934c7a49 [file] [log] [blame]
Anuj Joshi22a95c82021-08-12 12:16:41 +05301/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bob Badour990ffc22021-11-04 15:10:54 -070017package {
18 // See: http://go/android-license-faq
19 // A large-scale-change added 'default_applicable_licenses' to import
20 // all of the 'license_kinds' from "frameworks_av_license"
21 // to get the below license kinds:
22 // SPDX-license-identifier-Apache-2.0
23 default_applicable_licenses: ["frameworks_av_license"],
24}
25
Anuj Joshi22a95c82021-08-12 12:16:41 +053026cc_fuzz {
27 name: "libaaudio_fuzzer",
Lorena Torres-Huerta81329892022-08-12 23:08:12 +000028 defaults: [
29 "latest_android_media_audio_common_types_cpp_static",
30 ],
Anuj Joshi22a95c82021-08-12 12:16:41 +053031 srcs: [
32 "libaaudio_fuzzer.cpp",
33 ],
34 header_libs: [
35 "libaaudio_headers",
36 ],
37 shared_libs: [
38 "libbinder",
39 "libaudiomanager",
40 "libaudiopolicy",
41 "libaudioclient_aidl_conversion",
Pirama Arumuga Nainar261b8832022-04-19 21:53:58 +000042 "libutils",
Anuj Joshi22a95c82021-08-12 12:16:41 +053043 ],
44 static_libs: [
Anuj Joshi22a95c82021-08-12 12:16:41 +053045 "liblog",
Anuj Joshi22a95c82021-08-12 12:16:41 +053046 "libcutils",
47 "libaaudio",
48 "libjsoncpp",
49 "libbase_ndk",
50 "libcgrouprc",
51 "libaudioutils",
52 "libaudioclient",
53 "aaudio-aidl-cpp",
54 "libmedia_helper",
55 "libmediametrics",
56 "libprocessgroup",
57 "av-types-aidl-cpp",
58 "libaaudio_internal",
59 "libcgrouprc_format",
60 "audiopolicy-aidl-cpp",
61 "audioflinger-aidl-cpp",
62 "audiopolicy-types-aidl-cpp",
63 "audioclient-types-aidl-cpp",
64 "shared-file-region-aidl-cpp",
65 "framework-permission-aidl-cpp",
66 "mediametricsservice-aidl-cpp",
67 ],
68 fuzz_config: {
69 cc: [
70 "android-media-fuzzing-reports@google.com",
71 ],
72 componentid: 155276,
73 },
74}