mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 23:07:49 +00:00
This change removes the interface layer between the client and the underlying HAL. This is one part of a two part change to properly finish migrating all of the RemotelyProvisionedComponent functionality to system/keymaster. Test: atest VtsHalRemotelyProvisionedComponentTargetTest Change-Id: Ibccc6b3af86a63b8a6c6207fffd43cfc41b903b5
53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
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_binary {
|
|
name: "android.hardware.security.keymint-service",
|
|
relative_install_path: "hw",
|
|
init_rc: ["android.hardware.security.keymint-service.rc"],
|
|
vintf_fragments: [
|
|
"android.hardware.security.keymint-service.xml",
|
|
"android.hardware.security.sharedsecret-service.xml",
|
|
"android.hardware.security.secureclock-service.xml",
|
|
],
|
|
vendor: true,
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.security.keymint-V1-ndk_platform",
|
|
"android.hardware.security.sharedsecret-V1-ndk_platform",
|
|
"android.hardware.security.secureclock-V1-ndk_platform",
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libcppbor_external",
|
|
"libcrypto",
|
|
"libkeymaster_portable",
|
|
"libkeymint",
|
|
"liblog",
|
|
"libpuresoftkeymasterdevice",
|
|
"libutils",
|
|
],
|
|
srcs: [
|
|
"service.cpp",
|
|
],
|
|
required: [
|
|
"RemoteProvisioner",
|
|
"android.hardware.hardware_keystore.xml",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "android.hardware.hardware_keystore.xml",
|
|
sub_dir: "permissions",
|
|
vendor: true,
|
|
src: "android.hardware.hardware_keystore.xml",
|
|
}
|