Files
android_device_brcm_rpi4/health/Android.bp
2025-03-19 12:22:15 +02:00

59 lines
1.4 KiB
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,
srcs: [
"HealthImpl.cpp",
"main.cpp",
],
static_libs: [
"libbatterymonitor",
"libhealth_aidl_impl",
"libhealthloop",
],
shared_libs: [
"android.hardware.health-V4-ndk",
"libbase",
"libbinder_ndk",
"libcutils",
"liblog",
"libutils",
],
overrides: ["charger"],
installable: false,
}
prebuilt_etc {
name: "android.hardware.health-service.rpi.rc",
src: "android.hardware.health-service.rpi.rc",
installable: false,
}
prebuilt_etc {
name: "android.hardware.health-service.rpi.xml",
src: "android.hardware.health-service.rpi.xml",
sub_dir: "vintf",
installable: false,
}
apex {
name: "com.android.hardware.health.rpi4",
manifest: "apex_manifest.json",
file_contexts: "apex_file_contexts",
key: "com.android.hardware.key",
certificate: ":com.android.hardware.certificate",
updatable: false,
vendor: true,
binaries: ["android.hardware.health-service.rpi"],
prebuilts: [
"android.hardware.health-service.rpi.rc",
"android.hardware.health-service.rpi.xml",
],
}