blob: edfc5a56d6aeee0052f4bd924389bde55e8f14d3 [file] [log] [blame]
Ayushi Khopkar0d0cba22021-01-06 15:41:22 +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: "audioflinger_fuzzer",
19 srcs: [
20 "audioflinger_fuzzer.cpp",
21 ],
22 static_libs: [
23 "android.hardware.audio.common@7.0-enums",
24 "effect-aidl-unstable-cpp",
25 "libaudioclient",
26 "libbase",
27 "libcgrouprc",
28 "libcgrouprc_format",
29 "libcutils",
30 "libjsoncpp",
31 "liblog",
32 "libmediametrics",
33 "libmediametricsservice",
34 "libmedia_helper",
35 "libprocessgroup",
36 "shared-file-region-aidl-unstable-cpp",
37 ],
38 shared_libs: [
39 "android.hardware.audio.common-util",
40 "audioclient-types-aidl-unstable-cpp",
41 "audioflinger-aidl-unstable-cpp",
42 "audiopolicy-aidl-unstable-cpp",
43 "audiopolicy-types-aidl-unstable-cpp",
44 "av-types-aidl-unstable-cpp",
45 "capture_state_listener-aidl-unstable-cpp",
46 "libaudioclient_aidl_conversion",
47 "libaudioflinger",
48 "libaudiofoundation",
49 "libaudiomanager",
50 "libaudiopolicy",
51 "libaudioutils",
52 "libbinder",
53 "libdl",
54 "libmediautils",
55 "libnblog",
56 "libutils",
57 "libxml2",
58 "mediametricsservice-aidl-unstable-cpp",
59 ],
60 header_libs: [
61 "libaudiofoundation_headers",
62 "libmedia_headers",
63 ],
64 fuzz_config: {
65 cc: [
66 "android-media-fuzzing-reports@google.com",
67 ],
68 componentid: 155276,
69 },
70}