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