You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
4 months ago
|
// Reasonable defaults for android.hardware.health@2.0-service.<device>.
|
||
|
// Vendor service can customize by implementing functions defined in
|
||
|
// libhealthd and libhealthstoragedefault.
|
||
|
|
||
|
|
||
|
package {
|
||
|
// See: http://go/android-license-faq
|
||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
||
|
// to get the below license kinds:
|
||
|
// SPDX-license-identifier-Apache-2.0
|
||
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
||
|
}
|
||
|
|
||
|
cc_library_static {
|
||
|
name: "libhealthservice",
|
||
|
vendor_available: true,
|
||
|
srcs: ["HealthServiceCommon.cpp"],
|
||
|
|
||
|
export_include_dirs: ["include"],
|
||
|
|
||
|
cflags: [
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
shared_libs: [
|
||
|
"android.hardware.health@2.0",
|
||
|
],
|
||
|
static_libs: [
|
||
|
"android.hardware.health@2.0-impl",
|
||
|
"android.hardware.health@1.0-convert",
|
||
|
],
|
||
|
export_static_lib_headers: [
|
||
|
"android.hardware.health@1.0-convert",
|
||
|
],
|
||
|
header_libs: ["libhealthd_headers"],
|
||
|
export_header_lib_headers: ["libhealthd_headers"],
|
||
|
}
|