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