blob: e2eec7ae628df5abdc77003d44d8964f9b2e5c99 [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",
28 srcs: [
29 "libaaudio_fuzzer.cpp",
30 ],
31 header_libs: [
32 "libaaudio_headers",
33 ],
34 shared_libs: [
35 "libbinder",
36 "libaudiomanager",
37 "libaudiopolicy",
38 "libaudioclient_aidl_conversion",
39 ],
40 static_libs: [
41 "android.media.audio.common.types-V1-cpp",
42 "liblog",
43 "libutils",
44 "libcutils",
45 "libaaudio",
46 "libjsoncpp",
47 "libbase_ndk",
48 "libcgrouprc",
49 "libaudioutils",
50 "libaudioclient",
51 "aaudio-aidl-cpp",
52 "libmedia_helper",
53 "libmediametrics",
54 "libprocessgroup",
55 "av-types-aidl-cpp",
56 "libaaudio_internal",
57 "libcgrouprc_format",
58 "audiopolicy-aidl-cpp",
59 "audioflinger-aidl-cpp",
60 "audiopolicy-types-aidl-cpp",
61 "audioclient-types-aidl-cpp",
62 "shared-file-region-aidl-cpp",
63 "framework-permission-aidl-cpp",
64 "mediametricsservice-aidl-cpp",
65 ],
66 fuzz_config: {
67 cc: [
68 "android-media-fuzzing-reports@google.com",
69 ],
70 componentid: 155276,
71 },
72}