blob: fe3af0f683834462f14650c373191cd68f789c64 [file] [log] [blame]
Alice Wang1ba4f8a2023-01-23 13:49:39 +00001// Copyright 2023, The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
Aditya Choudhary53696172024-02-05 15:46:19 +000016 default_team: "trendy_team_virtualization",
Alice Wang1ba4f8a2023-01-23 13:49:39 +000017 default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20rust_fuzz {
21 name: "avb_kernel_without_footer_verify_fuzzer",
22 srcs: ["without_footer_verify_fuzzer.rs"],
23 rustlibs: [
24 "libpvmfw_avb_nostd",
25 ],
26 fuzz_config: {
27 cc: [
28 "android-kvm@google.com",
29 ],
30 fuzz_on_haiku_device: true,
31 fuzz_on_haiku_host: true,
32 },
33}
34
Alice Wang54896492023-05-24 09:37:25 +000035rust_fuzz {
36 name: "avb_kernel_with_footer_verify_fuzzer",
37 srcs: ["with_footer_verify_fuzzer.rs"],
38 rustlibs: [
39 "libpvmfw_avb_nostd",
40 "libavb_bindgen_nostd",
41 ],
42 fuzz_config: {
43 cc: [
44 "android-kvm@google.com",
45 ],
46 fuzz_on_haiku_device: true,
47 fuzz_on_haiku_host: true,
48 },
49}