f8398ee24c
Only platform should ever have access to libsuspend Test: presubmit Change-Id: I5d58aeb98d5e777d81d4d65f7a62fe2fb50a72d4
20 lines
402 B
Text
20 lines
402 B
Text
// Copyright 2012 The Android Open Source Project
|
|
|
|
cc_library {
|
|
name: "libsuspend",
|
|
srcs: [
|
|
"autosuspend.c",
|
|
"autosuspend_wakeup_count.cpp",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
local_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
"libcutils",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
// "-DLOG_NDEBUG=0",
|
|
],
|
|
}
|