blob: e3b819125ab6f0a9b49949360b17cb85c567194c [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "hardware_interfaces_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
David Zeuthen81603152020-02-11 22:04:24 -050010aidl_interface {
11 name: "android.hardware.identity",
12 vendor_available: true,
13 srcs: [
14 "android/hardware/identity/*.aidl",
15 ],
16 imports: [
17 "android.hardware.keymaster",
Seth Moore1bf823c2022-01-25 23:04:37 +000018 "android.hardware.security.keymint",
David Zeuthen81603152020-02-11 22:04:24 -050019 ],
20 stability: "vintf",
21 backend: {
22 java: {
23 platform_apis: true,
24 },
25 ndk: {
26 vndk: {
27 enabled: true,
28 },
Seth Moore1bf823c2022-01-25 23:04:37 +000029 apps_enabled: false,
David Zeuthen81603152020-02-11 22:04:24 -050030 },
31 },
David Zeuthen28edb102020-04-28 18:54:55 -040032 versions: [
33 "1",
34 "2",
Jiyong Park72b63592021-05-21 11:28:05 +090035 "3",
David Zeuthen28edb102020-04-28 18:54:55 -040036 ],
David Zeuthen81603152020-02-11 22:04:24 -050037}