Files
hardware_interfaces/security/secureclock/aidl/Android.bp
Alan Stokes e75851712b Allow CompOS APEX to access Keystore AIDL.
Makes the AIDL (and its dependencies) available to allow client code
to build against it.

Fixes: 190995136
Test: Client code (in progress) builds.
Change-Id: I06e7486463bca93ed25377c0dca30484a6bbf656
2021-06-18 10:21:36 +01:00

36 lines
934 B
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"],
}
aidl_interface {
name: "android.hardware.security.secureclock",
vendor_available: true,
srcs: [
"android/hardware/security/secureclock/*.aidl",
],
stability: "vintf",
backend: {
java: {
platform_apis: true,
srcs_available: true,
},
ndk: {
vndk: {
enabled: true,
},
},
rust: {
enabled: true,
apex_available: [
"//apex_available:platform",
"com.android.compos",
],
},
},
}