mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
The ndk_platform backend will soon be deprecated because the ndk backend can serve the same purpose. This is to eliminate the confusion about having two variants (ndk and ndk_platform) for the same 'ndk' backend. Bug: 161456198 Test: m Change-Id: Ibe8beeaf0d1b33968fb782f1f70c17ae9e9bf871
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",
|
|
"android.hardware.security.sharedsecret-V1-ndk",
|
|
"android.hardware.security.secureclock-V1-ndk",
|
|
"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",
|
|
}
|