33 lines
814 B
Plaintext
33 lines
814 B
Plaintext
// Copyright (C) 2018 The Android Open Source Project
|
|
// Copyright (C) 2023 KonstaKANG
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
cc_binary {
|
|
name: "android.hardware.health-service.rpi",
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
init_rc: ["android.hardware.health-service.rpi.rc"],
|
|
vintf_fragments: ["android.hardware.health-service.rpi.xml"],
|
|
srcs: [
|
|
"HealthImpl.cpp",
|
|
"main.cpp",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.health-translate-ndk",
|
|
"libbatterymonitor",
|
|
"libhealthloop",
|
|
"libhealth_aidl_impl",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.health-V4-ndk",
|
|
],
|
|
overrides: ["charger"],
|
|
}
|