blob: 78831510a98c4735f85dc383fd32c366e559a4c1 [file] [log] [blame]
Dan Willemsen45f05242016-07-12 22:10:56 -07001// Copyright 2012 The Android Open Source Project
2
3cc_library {
4 name: "libsuspend",
Jayant Chowdharye37259e2017-05-16 15:04:53 -07005 vendor_available: true,
6
Dan Willemsen45f05242016-07-12 22:10:56 -07007 srcs: [
8 "autosuspend.c",
9 "autosuspend_autosleep.c",
10 "autosuspend_earlysuspend.c",
11 "autosuspend_wakeup_count.c",
12 ],
13 export_include_dirs: ["include"],
14 local_include_dirs: ["include"],
15 shared_libs: [
16 "liblog",
17 "libcutils",
18 ],
19 cflags: [
20 "-Werror",
21 // "-DLOG_NDEBUG=0",
22 ],
23}