You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
836 B
32 lines
836 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_gptfdisk_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-GPL-2.0
|
|
default_applicable_licenses: ["external_gptfdisk_license"],
|
|
}
|
|
|
|
cc_fuzz {
|
|
name: "libgptf_fuzzer",
|
|
srcs: ["libgptf_fuzzer.cc"],
|
|
cflags: ["-DENABLE_HEAP_DISKIO"],
|
|
host_supported: true,
|
|
corpus: ["corpus/*"],
|
|
static_libs: ["libgmock"],
|
|
target: {
|
|
android: {
|
|
static_libs: [
|
|
"libgptf_fuzzer_lib",
|
|
"libext2_uuid",
|
|
],
|
|
},
|
|
host: {
|
|
static_libs: [
|
|
"libgptf_fuzzer_lib",
|
|
"libext2_uuid",
|
|
],
|
|
},
|
|
},
|
|
}
|