1// Copyright 2012 The Android Open Source Project
2
3package {
4    default_applicable_licenses: ["Android-Apache-2.0"],
5}
6
7cc_library {
8    name: "libsuspend",
9    srcs: [
10        "autosuspend.c",
11        "autosuspend_wakeup_count.cpp",
12    ],
13    export_include_dirs: ["include"],
14    local_include_dirs: ["include"],
15    shared_libs: [
16        "libbase",
17        "liblog",
18        "libcutils",
19    ],
20    cflags: [
21        "-Werror",
22        // "-DLOG_NDEBUG=0",
23    ],
24}
25