summaryrefslogtreecommitdiffstats
path: root/libsuspend/Android.bp
blob: 78831510a98c4735f85dc383fd32c366e559a4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2012 The Android Open Source Project

cc_library {
    name: "libsuspend",
    vendor_available: true,

    srcs: [
        "autosuspend.c",
        "autosuspend_autosleep.c",
        "autosuspend_earlysuspend.c",
        "autosuspend_wakeup_count.c",
    ],
    export_include_dirs: ["include"],
    local_include_dirs: ["include"],
    shared_libs: [
        "liblog",
        "libcutils",
    ],
    cflags: [
        "-Werror",
        // "-DLOG_NDEBUG=0",
    ],
}