021d60be98
autosleep and earlysuspend are long-deprecated, so remove them to make libsuspend slightly more comprehensible. Test: builds and still suspends on marlin bug 32621856 Change-Id: I66a904c3fce0111fb5e9d1ab9d205c97617ae210
19 lines
381 B
Text
19 lines
381 B
Text
// Copyright 2012 The Android Open Source Project
|
|
|
|
cc_library {
|
|
name: "libsuspend",
|
|
srcs: [
|
|
"autosuspend.c",
|
|
"autosuspend_wakeup_count.c",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
local_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
// "-DLOG_NDEBUG=0",
|
|
],
|
|
}
|