blob: 4c6e1e55d58465fab63eaee1803886fe70cb33a5 [file] [log] [blame]
Dan Willemsen45f05242016-07-12 22:10:56 -07001// Copyright 2012 The Android Open Source Project
2
Bob Badour187b7d12021-02-12 17:48:16 -08003package {
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 Willemsen45f05242016-07-12 22:10:56 -070012cc_library {
13 name: "libsuspend",
14 srcs: [
15 "autosuspend.c",
Steve Paikdb887742017-12-20 15:09:21 -080016 "autosuspend_wakeup_count.cpp",
Dan Willemsen45f05242016-07-12 22:10:56 -070017 ],
18 export_include_dirs: ["include"],
19 local_include_dirs: ["include"],
20 shared_libs: [
Steve Paikd5dc8072017-12-21 12:44:46 -080021 "libbase",
Dan Willemsen45f05242016-07-12 22:10:56 -070022 "liblog",
23 "libcutils",
24 ],
25 cflags: [
26 "-Werror",
27 // "-DLOG_NDEBUG=0",
28 ],
29}