blob: 194d3973492f0888d63c49c400689491f30016ce [file] [log] [blame]
Aditya Wazir498b6eb2021-05-04 13:55:31 +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: "keystoreGetWifiHidl_fuzzer",
19 vendor: true,
20 srcs: [
21 "keystoreGetWifiHidl_fuzzer.cpp",
22 ],
23 static_libs: [
24 "libkeystore-wifi-hidl",
25 "libutils",
26 ],
27 shared_libs: [
28 "android.system.wifi.keystore@1.0",
29 "libhidlbase",
30 "liblog",
31 ],
32 fuzz_config: {
33 cc: [
34 "android-media-fuzzing-reports@google.com",
35 ],
36 componentid: 155276,
37 },
38}
Aditya Wazir730a1332021-05-19 11:01:36 +053039
40cc_defaults {
41 name: "keystoreAttestation_defaults",
42 static_libs: [
43 "libkeystore-attestation-application-id",
44 "liblog",
45 "libutils",
46 "libbase",
47 "libhidlbase",
48 ],
49 shared_libs: [
50 "libbinder",
51 "libcrypto",
52 ],
53 fuzz_config: {
54 cc: [
55 "android-media-fuzzing-reports@google.com",
56 ],
57 componentid: 155276,
58 },
59}
60
61cc_fuzz {
62 name: "keystoreSignature_fuzzer",
63 srcs: [
64 "keystoreSignature_fuzzer.cpp",
65 ],
66 defaults: [
67 "keystoreAttestation_defaults",
68 ],
69}
70
71cc_fuzz {
72 name: "keystorePackageInfo_fuzzer",
73 srcs: [
74 "keystorePackageInfo_fuzzer.cpp",
75 ],
76 defaults: [
77 "keystoreAttestation_defaults",
78 ],
79}
80
81cc_fuzz {
82 name: "keystoreApplicationId_fuzzer",
83 srcs: [
84 "keystoreApplicationId_fuzzer.cpp",
85 ],
86 defaults: [
87 "keystoreAttestation_defaults",
88 ],
89}
90
91cc_fuzz {
92 name: "keystoreAttestationId_fuzzer",
93 srcs: [
94 "keystoreAttestationId_fuzzer.cpp",
95 ],
96 defaults: [
97 "keystoreAttestation_defaults",
98 ],
99}