d5dc807475
ALOGV --> LOG(VERBOSE) ALOGE --> PLOG(ERROR) Also cpp-ify file handling Bug: 70669809 Test: Logs work Change-Id: Idbaf3dccb495cdcd11f411c70784d19d1faa13a5
25 lines
473 B
Text
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",
|
|
],
|
|
}
|