blob: d0c1b8b054103ebe9d5c51858fdb40373c81fc8f [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
Ilya Matyukhined361972020-06-24 10:59:56 -070010aidl_interface {
11 name: "android.hardware.biometrics.fingerprint",
12 vendor_available: true,
13 srcs: [
14 "android/hardware/biometrics/fingerprint/**/*.aidl",
15 ],
16 imports: [
Vincent Wang890be572023-11-30 07:36:41 +000017 "android.hardware.biometrics.common-V4",
Ilya Matyukhin84531782022-10-31 02:29:43 +000018 "android.hardware.keymaster-V4",
Ilya Matyukhined361972020-06-24 10:59:56 -070019 ],
20 stability: "vintf",
21 backend: {
22 java: {
23 platform_apis: true,
24 },
25 cpp: {
26 enabled: false,
27 },
Patryk Duda2d00cd02024-09-11 14:15:12 +000028 rust: {
29 enabled: true,
30 },
Ilya Matyukhined361972020-06-24 10:59:56 -070031 },
Jiyong Park703e9792022-03-22 14:18:48 +090032 versions_with_info: [
33 {
34 version: "1",
35 imports: [
36 "android.hardware.biometrics.common-V1",
37 "android.hardware.keymaster-V3",
38 ],
39 },
40 {
41 version: "2",
42 imports: [
43 "android.hardware.biometrics.common-V2",
44 "android.hardware.keymaster-V3",
45 ],
46 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000047 {
48 version: "3",
49 imports: [
50 "android.hardware.biometrics.common-V3",
51 "android.hardware.keymaster-V4",
52 ],
53 },
Devin Moorea8efdb12024-02-20 17:31:40 +000054 {
55 version: "4",
56 imports: [
57 "android.hardware.biometrics.common-V4",
58 "android.hardware.keymaster-V4",
59 ],
60 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000061
Jiyong Park703e9792022-03-22 14:18:48 +090062 ],
Jeff Pudf81c962024-03-06 10:58:17 -050063 frozen: false,
Ilya Matyukhined361972020-06-24 10:59:56 -070064}