45f05240c2
These modules have their dependencies satisfied, and aren't doing anything strange. Change-Id: I72039a15256cbd5e5eee0d79a15d66d74a6c087d
21 lines
454 B
Text
21 lines
454 B
Text
// Copyright 2012 The Android Open Source Project
|
|
|
|
cc_library {
|
|
name: "libsuspend",
|
|
srcs: [
|
|
"autosuspend.c",
|
|
"autosuspend_autosleep.c",
|
|
"autosuspend_earlysuspend.c",
|
|
"autosuspend_wakeup_count.c",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
local_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
// "-DLOG_NDEBUG=0",
|
|
],
|
|
}
|