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.

38 lines
668 B

package {
// See: http://go/android-license-faq
default_applicable_licenses: ["frameworks_native_license"],
}
cc_library {
name: "libbattery",
srcs: [
"LongArrayMultiStateCounter.cpp",
],
shared_libs: [
"liblog",
],
cflags: [
"-Werror",
"-Wall",
"-Wextra",
],
export_include_dirs: ["."],
}
cc_test {
name: "libbattery_test",
srcs: [
"MultiStateCounterTest.cpp",
"LongArrayMultiStateCounterTest.cpp",
],
static_libs: ["libbattery"],
shared_libs: [
"liblog",
],
cflags: [
"-Werror",
"-Wall",
"-Wextra",
],
}