2021-02-12 18:26:03 -08:00
|
|
|
package {
|
|
|
|
|
// See: http://go/android-license-faq
|
|
|
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
|
|
|
// all of the 'license_kinds' from "external_libxaac_license"
|
|
|
|
|
// to get the below license kinds:
|
|
|
|
|
// SPDX-license-identifier-Apache-2.0
|
|
|
|
|
default_applicable_licenses: ["external_libxaac_license"],
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-16 16:45:54 -07:00
|
|
|
cc_fuzz {
|
|
|
|
|
name: "xaac_dec_fuzzer",
|
|
|
|
|
host_supported: true,
|
|
|
|
|
srcs: [
|
|
|
|
|
"xaac_dec_fuzzer.cpp",
|
|
|
|
|
],
|
|
|
|
|
static_libs: [
|
|
|
|
|
"libxaacdec",
|
|
|
|
|
"liblog",
|
|
|
|
|
],
|
2020-05-28 14:34:04 -07:00
|
|
|
fuzz_config: {
|
|
|
|
|
cc: [
|
|
|
|
|
"android-media-fuzzing-reports@google.com",
|
|
|
|
|
],
|
|
|
|
|
componentid: 155276,
|
|
|
|
|
},
|
2019-08-16 16:45:54 -07:00
|
|
|
}
|
2023-05-22 20:11:52 +05:30
|
|
|
|
|
|
|
|
cc_fuzz {
|
|
|
|
|
name: "xaac_enc_fuzzer",
|
|
|
|
|
host_supported: true,
|
|
|
|
|
srcs: [
|
2023-06-23 17:54:31 +05:30
|
|
|
"xaac_enc_fuzzer.cpp",
|
2023-05-22 20:11:52 +05:30
|
|
|
],
|
|
|
|
|
static_libs: [
|
|
|
|
|
"libxaacenc",
|
|
|
|
|
"liblog",
|
|
|
|
|
],
|
|
|
|
|
fuzz_config: {
|
|
|
|
|
cc: [
|
|
|
|
|
"android-media-fuzzing-reports@google.com",
|
|
|
|
|
],
|
|
|
|
|
componentid: 155276,
|
|
|
|
|
},
|
2023-06-23 17:54:31 +05:30
|
|
|
}
|