Android.bp 696 B

1234567891011121314151617181920212223242526272829303132333435
  1. cc_library_static {
  2. name: "liblocbatterylistener",
  3. vendor: true,
  4. cflags: GNSS_CFLAGS + ["-DBATTERY_LISTENER_ENABLED"],
  5. local_include_dirs: ["."],
  6. srcs: ["battery_listener.cpp"],
  7. shared_libs: [
  8. "liblog",
  9. "libhidlbase",
  10. "libcutils",
  11. "libutils",
  12. "[email protected]",
  13. "[email protected]",
  14. "[email protected]",
  15. "libbase",
  16. ],
  17. static_libs: ["libhealthhalutils"],
  18. header_libs: [
  19. "libgps.utils_headers",
  20. "libloc_pla_headers",
  21. ],
  22. }
  23. cc_library_headers {
  24. name: "liblocbatterylistener_headers",
  25. vendor: true,
  26. export_include_dirs: ["."],
  27. }