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.

43 lines
751 B

cc_library_shared {
name: "libmediametrics",
srcs: [
"IMediaAnalyticsService.cpp",
"MediaAnalyticsItem.cpp",
"MediaMetrics.cpp",
],
shared_libs: [
"libbinder",
"libcutils",
"liblog",
"libutils",
],
export_include_dirs: ["include"],
cflags: [
"-Werror",
"-Wno-error=deprecated-declarations",
"-Wall",
],
sanitize: {
misc_undefined: [
"unsigned-integer-overflow",
"signed-integer-overflow",
],
cfi: true,
},
// enumerate stable entry points, for apex use
stubs: {
symbol_file: "libmediametrics.map.txt",
versions: [
"1" ,
]
},
}