1cc_library_static {
2    name: "android.hardware.health@2.0-impl",
3    vendor_available: true,
4    srcs: [
5        "Health.cpp",
6        "healthd_common.cpp",
7    ],
8
9    cflags: ["-DHEALTHD_USE_HEALTH_2_0"],
10
11    export_include_dirs: ["include"],
12
13    shared_libs: [
14        "libbase",
15        "libhidlbase",
16        "libhidltransport",
17        "libhwbinder",
18        "liblog",
19        "libutils",
20        "libcutils",
21        "android.hardware.health@2.0",
22    ],
23
24    static_libs: [
25        "libbatterymonitor",
26        "android.hardware.health@1.0-convert",
27    ],
28}
29