blob: a8eb385c454d745b6df7873164e7515657c2aa7a [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",
Jeongik Chaa01ed782021-02-11 09:50:00 +090024 "effect-aidl-cpp",
Ayushi Khopkar0d0cba22021-01-06 15:41:22 +053025 "libaudioclient",
26 "libbase",
27 "libcgrouprc",
28 "libcgrouprc_format",
29 "libcutils",
30 "libjsoncpp",
31 "liblog",
32 "libmediametrics",
33 "libmediametricsservice",
34 "libmedia_helper",
35 "libprocessgroup",
Jeongik Chaa01ed782021-02-11 09:50:00 +090036 "shared-file-region-aidl-cpp",
Ayushi Khopkar0d0cba22021-01-06 15:41:22 +053037 ],
38 shared_libs: [
39 "android.hardware.audio.common-util",
Jeongik Chaa01ed782021-02-11 09:50:00 +090040 "audioclient-types-aidl-cpp",
41 "audioflinger-aidl-cpp",
42 "audiopolicy-aidl-cpp",
43 "audiopolicy-types-aidl-cpp",
44 "av-types-aidl-cpp",
45 "capture_state_listener-aidl-cpp",
Ayushi Khopkar0d0cba22021-01-06 15:41:22 +053046 "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",
Jeongik Chaa01ed782021-02-11 09:50:00 +090058 "mediametricsservice-aidl-cpp",
Ayushi Khopkar0d0cba22021-01-06 15:41:22 +053059 ],
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}