Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 1 | // Copyright 2012 The Android Open Source Project |
| 2 | |
Bob Badour | 187b7d1 | 2021-02-12 17:48:16 -0800 | [diff] [blame^] | 3 | package { |
| 4 | // See: http://go/android-license-faq |
| 5 | // A large-scale-change added 'default_applicable_licenses' to import |
| 6 | // all of the 'license_kinds' from "system_core_license" |
| 7 | // to get the below license kinds: |
| 8 | // SPDX-license-identifier-Apache-2.0 |
| 9 | default_applicable_licenses: ["system_core_license"], |
| 10 | } |
| 11 | |
Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 12 | cc_library { |
| 13 | name: "libsuspend", |
| 14 | srcs: [ |
| 15 | "autosuspend.c", |
Steve Paik | db88774 | 2017-12-20 15:09:21 -0800 | [diff] [blame] | 16 | "autosuspend_wakeup_count.cpp", |
Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 17 | ], |
| 18 | export_include_dirs: ["include"], |
| 19 | local_include_dirs: ["include"], |
| 20 | shared_libs: [ |
Steve Paik | d5dc807 | 2017-12-21 12:44:46 -0800 | [diff] [blame] | 21 | "libbase", |
Dan Willemsen | 45f0524 | 2016-07-12 22:10:56 -0700 | [diff] [blame] | 22 | "liblog", |
| 23 | "libcutils", |
| 24 | ], |
| 25 | cflags: [ |
| 26 | "-Werror", |
| 27 | // "-DLOG_NDEBUG=0", |
| 28 | ], |
| 29 | } |