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