1234567891011121314151617181920212223242526272829303132333435 |
- cc_library_static {
- name: "liblocbatterylistener",
- vendor: true,
- cflags: GNSS_CFLAGS + ["-DBATTERY_LISTENER_ENABLED"],
- local_include_dirs: ["."],
- srcs: ["battery_listener.cpp"],
- shared_libs: [
- "liblog",
- "libhidlbase",
- "libcutils",
- "libutils",
- "[email protected]",
- "[email protected]",
- "[email protected]",
- "libbase",
- ],
- static_libs: ["libhealthhalutils"],
- header_libs: [
- "libgps.utils_headers",
- "libloc_pla_headers",
- ],
- }
- cc_library_headers {
- name: "liblocbatterylistener_headers",
- vendor: true,
- export_include_dirs: ["."],
- }
|