blob: 6f2d0546e0db93ea83a8c1640c338a3bd1f26544 [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",
50 "libhidlallocatorutils",
51 "libhidlbase",
52 ],
53 fuzz_config: {
54 cc: [
55 "android-media-fuzzing-reports@google.com",
56 ],
57 componentid: 155276,
58 },
59}