blob: 5e389b4d6b2de41381bdac517b5165c78828926c [file] [log] [blame]
Ayushi Khopkara8583242020-12-03 16:05:34 +05301/******************************************************************************
2 *
3 * Copyright (C) 2020 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *****************************************************************************
18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19 */
20
21cc_fuzz {
22 name: "mediadrm_fuzzer",
23 srcs: [
24 "mediadrm_fuzzer.cpp",
25 ],
26 static_libs: [
27 "libmediadrm",
28 "liblog",
29 "resourcemanager_aidl_interface-ndk_platform",
30 ],
31 header_libs: [
32 "libmedia_headers",
33 "libmediadrm_headers",
34 ],
35 shared_libs: [
36 "libbinder",
37 "libutils",
38 "libbinder_ndk",
39 "libcutils",
40 "libdl",
41 "libmedia",
42 "libmediadrmmetrics_lite",
43 "libmediametrics#1",
44 "libmediautils",
45 "libstagefright_foundation",
46 "android.hardware.drm@1.0",
47 "android.hardware.drm@1.1",
48 "android.hardware.drm@1.2",
49 "android.hardware.drm@1.3",
Robert Shihfbe581e2021-01-14 05:12:04 -080050 "android.hardware.drm@1.4",
Ayushi Khopkara8583242020-12-03 16:05:34 +053051 "libhidlallocatorutils",
52 "libhidlbase",
53 ],
54 fuzz_config: {
55 cc: [
56 "android-media-fuzzing-reports@google.com",
57 ],
58 componentid: 155276,
59 },
60}