blob: c5f1f5e0a6bfbea6e823640c73e629b1f53e3bea [file] [log] [blame]
Dan Willemsen45f05242016-07-12 22:10:56 -07001// Copyright 2012 The Android Open Source Project
2
3cc_library {
4 name: "libsuspend",
5 srcs: [
6 "autosuspend.c",
Steve Paikdb887742017-12-20 15:09:21 -08007 "autosuspend_wakeup_count.cpp",
Dan Willemsen45f05242016-07-12 22:10:56 -07008 ],
9 export_include_dirs: ["include"],
10 local_include_dirs: ["include"],
11 shared_libs: [
Steve Paikd5dc8072017-12-21 12:44:46 -080012 "libbase",
Dan Willemsen45f05242016-07-12 22:10:56 -070013 "liblog",
14 "libcutils",
15 ],
16 cflags: [
17 "-Werror",
18 // "-DLOG_NDEBUG=0",
19 ],
20}