platform_system_core/libsuspend/Android.bp
Steve Paik d5dc807475 Fix logging in libsuspend
ALOGV --> LOG(VERBOSE)
ALOGE --> PLOG(ERROR)

Also cpp-ify file handling

Bug: 70669809
Test:  Logs work
Change-Id: Idbaf3dccb495cdcd11f411c70784d19d1faa13a5
2018-01-08 13:35:35 -08:00

25 lines
473 B
Text

// Copyright 2012 The Android Open Source Project
cc_library {
name: "libsuspend",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"autosuspend.c",
"autosuspend_wakeup_count.cpp",
],
export_include_dirs: ["include"],
local_include_dirs: ["include"],
shared_libs: [
"libbase",
"liblog",
"libcutils",
],
cflags: [
"-Werror",
// "-DLOG_NDEBUG=0",
],
}