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