2021-02-23 14:26:20 -08:00
|
|
|
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"],
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-11 22:04:24 -05:00
|
|
|
aidl_interface {
|
|
|
|
|
name: "android.hardware.identity",
|
|
|
|
|
vendor_available: true,
|
|
|
|
|
srcs: [
|
|
|
|
|
"android/hardware/identity/*.aidl",
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
2022-09-29 16:14:53 -07:00
|
|
|
"android.hardware.keymaster-V3",
|
2022-11-04 17:39:05 +00:00
|
|
|
"android.hardware.security.rkp-V3",
|
2020-02-11 22:04:24 -05:00
|
|
|
],
|
|
|
|
|
stability: "vintf",
|
2023-04-04 19:52:27 +00:00
|
|
|
frozen: true,
|
2020-02-11 22:04:24 -05:00
|
|
|
backend: {
|
|
|
|
|
java: {
|
|
|
|
|
platform_apis: true,
|
|
|
|
|
},
|
|
|
|
|
ndk: {
|
2022-01-25 23:04:37 +00:00
|
|
|
apps_enabled: false,
|
2020-02-11 22:04:24 -05:00
|
|
|
},
|
|
|
|
|
},
|
2022-03-22 14:18:48 +09:00
|
|
|
versions_with_info: [
|
|
|
|
|
{
|
|
|
|
|
version: "1",
|
|
|
|
|
imports: [
|
|
|
|
|
"android.hardware.keymaster-V3",
|
2022-11-04 17:39:05 +00:00
|
|
|
"android.hardware.security.rkp-V1",
|
2022-03-22 14:18:48 +09:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
version: "2",
|
|
|
|
|
imports: [
|
|
|
|
|
"android.hardware.keymaster-V3",
|
2022-11-04 17:39:05 +00:00
|
|
|
"android.hardware.security.rkp-V1",
|
2022-03-22 14:18:48 +09:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
version: "3",
|
|
|
|
|
imports: [
|
|
|
|
|
"android.hardware.keymaster-V3",
|
2022-11-04 17:39:05 +00:00
|
|
|
"android.hardware.security.rkp-V1",
|
2022-03-22 14:18:48 +09:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
version: "4",
|
|
|
|
|
imports: [
|
|
|
|
|
"android.hardware.keymaster-V3",
|
2022-11-04 17:39:05 +00:00
|
|
|
"android.hardware.security.rkp-V3",
|
2022-03-22 14:18:48 +09:00
|
|
|
],
|
|
|
|
|
},
|
2023-04-04 19:52:27 +00:00
|
|
|
{
|
|
|
|
|
version: "5",
|
|
|
|
|
imports: [
|
|
|
|
|
"android.hardware.keymaster-V3",
|
|
|
|
|
"android.hardware.security.rkp-V3",
|
|
|
|
|
],
|
|
|
|
|
},
|
2022-03-22 14:18:48 +09:00
|
|
|
|
2020-04-28 18:54:55 -04:00
|
|
|
],
|
2022-03-22 14:18:48 +09:00
|
|
|
|
2020-02-11 22:04:24 -05:00
|
|
|
}
|
2022-09-06 17:19:57 -07:00
|
|
|
|
|
|
|
|
// cc_defaults that includes the latest Identity AIDL library.
|
|
|
|
|
// Modules that depend on Identity directly can include this cc_defaults to
|
|
|
|
|
// avoid managing dependency versions explicitly.
|
|
|
|
|
cc_defaults {
|
|
|
|
|
name: "identity_use_latest_hal_aidl_ndk_static",
|
|
|
|
|
static_libs: [
|
2022-10-04 13:17:14 -04:00
|
|
|
"android.hardware.identity-V5-ndk",
|
2022-09-06 17:19:57 -07:00
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cc_defaults {
|
|
|
|
|
name: "identity_use_latest_hal_aidl_ndk_shared",
|
|
|
|
|
shared_libs: [
|
2022-10-04 13:17:14 -04:00
|
|
|
"android.hardware.identity-V5-ndk",
|
2022-09-06 17:19:57 -07:00
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cc_defaults {
|
|
|
|
|
name: "identity_use_latest_hal_aidl_cpp_static",
|
|
|
|
|
static_libs: [
|
2022-10-04 13:17:14 -04:00
|
|
|
"android.hardware.identity-V5-cpp",
|
2022-09-06 17:19:57 -07:00
|
|
|
],
|
|
|
|
|
}
|