blob: 74e7ef1de0f6b6364fa4f8cb648204763ace9723 [file] [log] [blame]
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "frameworks_av_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["frameworks_av_license"],
}
cc_library {
name: "libsfplugin_ccodec_utils",
vendor_available: true,
min_sdk_version: "29",
double_loadable: true,
srcs: [
"Codec2BufferUtils.cpp",
"Codec2Mapper.cpp",
],
cflags: [
"-Werror",
"-Wall",
],
export_include_dirs: [
".",
],
shared_libs: [
"libbase",
"libcodec2",
"libcodec2_vndk",
"libcutils",
"liblog",
"libstagefright_foundation",
"libutils",
],
static_libs: [
"libyuv_static",
],
sanitize: {
cfi: true,
misc_undefined: [
"unsigned-integer-overflow",
"signed-integer-overflow",
],
},
}