• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2012 The Android Open Source Project
2
3cc_library {
4    name: "libsuspend",
5    vendor_available: true,
6    vndk: {
7        enabled: true,
8    },
9
10    srcs: [
11        "autosuspend.c",
12        "autosuspend_wakeup_count.c",
13    ],
14    export_include_dirs: ["include"],
15    local_include_dirs: ["include"],
16    shared_libs: [
17        "liblog",
18        "libcutils",
19    ],
20    cflags: [
21        "-Werror",
22        // "-DLOG_NDEBUG=0",
23    ],
24}
25