blob: 07e124b0eaf42a5ae4d33e0760655f64a94de547 [file] [log] [blame]
// TODO: change it back to cc_library_shared when there is a way to
// expose media metrics as stable API.
cc_library {
name: "libmediametrics",
srcs: [
"IMediaAnalyticsService.cpp",
"MediaAnalyticsItem.cpp",
],
shared_libs: [
"liblog",
"libcutils",
"libutils",
"libbinder",
"libstagefright_foundation",
"libbase",
],
export_include_dirs: ["include"],
cflags: [
"-Werror",
"-Wno-error=deprecated-declarations",
"-Wall",
],
sanitize: {
misc_undefined: [
"unsigned-integer-overflow",
"signed-integer-overflow",
],
cfi: true,
diag: {
cfi: true,
},
},
}