2016-07-13 07:10:56 +02:00
|
|
|
// Copyright 2012 The Android Open Source Project
|
|
|
|
|
2021-02-17 04:02:14 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2016-07-13 07:10:56 +02:00
|
|
|
cc_library {
|
|
|
|
name: "libsuspend",
|
2021-10-21 07:42:35 +02:00
|
|
|
vendor_available: true,
|
2016-07-13 07:10:56 +02:00
|
|
|
srcs: [
|
|
|
|
"autosuspend.c",
|
2017-12-21 00:09:21 +01:00
|
|
|
"autosuspend_wakeup_count.cpp",
|
2016-07-13 07:10:56 +02:00
|
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
2017-12-21 21:44:46 +01:00
|
|
|
"libbase",
|
2016-07-13 07:10:56 +02:00
|
|
|
"liblog",
|
|
|
|
"libcutils",
|
|
|
|
],
|
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
|
|
|
// "-DLOG_NDEBUG=0",
|
|
|
|
],
|
|
|
|
}
|