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