blob: 5f4a18b832675dc62e78bd96be659b72b024e475 [file] [log] [blame]
Bob Badour0d1c96b2021-02-12 17:19:13 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "external_gptfdisk_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-GPL-2.0
7 default_applicable_licenses: ["external_gptfdisk_license"],
8}
9
Jeff Sharkey83fdc992020-10-13 19:50:30 -060010cc_fuzz {
11 name: "libgptf_fuzzer",
12 srcs: ["libgptf_fuzzer.cc"],
13 cflags: ["-DENABLE_HEAP_DISKIO"],
14 host_supported: true,
15 corpus: ["corpus/*"],
16 static_libs: ["libgmock"],
17 target: {
18 android: {
19 static_libs: [
20 "libgptf_fuzzer_lib",
21 "libext2_uuid",
22 ],
23 },
24 host: {
25 static_libs: [
26 "libgptf_fuzzer_lib",
27 "libext2_uuid",
28 ],
29 },
30 },
31}