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

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_library {
    name: "libsuspend",
    vendor_available: true,
    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",
    ],
}