Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 1 | // Copyright 2012 The Android Open Source Project |
| 2 | |
| 3 | cc_library { |
| 4 | name: "libsuspend", |
| 5 | srcs: [ |
| 6 | "autosuspend.c", |
Steve Paik | db88774 | 2017-12-20 15:09:21 -0800 | [diff] [blame] | 7 | "autosuspend_wakeup_count.cpp", |
Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 8 | ], |
| 9 | export_include_dirs: ["include"], |
| 10 | local_include_dirs: ["include"], |
| 11 | shared_libs: [ |
Steve Paik | d5dc807 | 2017-12-21 12:44:46 -0800 | [diff] [blame] | 12 | "libbase", |
Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 13 | "liblog", |
| 14 | "libcutils", |
| 15 | ], |
| 16 | cflags: [ |
| 17 | "-Werror", |
| 18 | // "-DLOG_NDEBUG=0", |
| 19 | ], |
| 20 | } |