Home | History | Annotate | Download | only in libsuspend
      1 // Copyright 2012 The Android Open Source Project
      2 
      3 cc_library {
      4     name: "libsuspend",
      5     vendor_available: true,
      6     vndk: {
      7         enabled: true,
      8     },
      9 
     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