blob: 17bcca041752ecd91b9c15348933d174fac593da [file] [log] [blame] [edit]
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "external_libhevc_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["external_libhevc_license"],
}
cc_fuzz {
name: "hevc_dec_fuzzer",
host_supported: true,
srcs: [
"hevc_dec_fuzzer.cpp",
],
static_libs: [
"libhevcdec",
"liblog",
],
target: {
darwin: {
enabled: false,
},
},
fuzz_config: {
cc: [
"[email protected]",
],
componentid: 155276,
hotlists: [
"4593311",
"2281331",
],
description: "The fuzzer targets the APIs of libhevcdec",
vector: "remote",
service_privilege: "constrained",
users: "multi_user",
fuzzed_code_usage: "shipped",
},
}
cc_fuzz {
name: "hevc_enc_fuzzer",
host_supported: true,
srcs: [
"hevc_enc_fuzzer.cpp",
],
static_libs: [
"libhevcenc",
"liblog",
],
cflags: [
"-Wall",
"-Werror",
],
fuzz_config: {
cc: [
"[email protected]",
],
componentid: 155276,
hotlists: [
"4593311",
"2281331",
],
description: "The fuzzer targets the APIs of libhevcenc",
vector: "local_no_privileges_required",
service_privilege: "constrained",
users: "multi_user",
fuzzed_code_usage: "shipped",
},
}