platform_system_core/libsuspend/Android.bp
Tim Murray 021d60be98 libsuspend: remove autosleep and earlysuspend
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
2016-11-02 15:49:56 -07:00

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",
],
}