blob: 79df9c63547bdc2e4669b7a858a6bd8574418324 [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 Matyukhin457e9d82020-10-08 12:52:04 -070010aidl_interface {
11 name: "android.hardware.biometrics.face",
12 vendor_available: true,
13 srcs: [
14 "android/hardware/biometrics/face/**/*.aidl",
15 ],
16 imports: [
Ilya Matyukhin84531782022-10-31 02:29:43 +000017 "android.hardware.biometrics.common-V3",
Hongguang87331882021-07-22 14:15:00 -070018 "android.hardware.common-V2",
Ilya Matyukhin84531782022-10-31 02:29:43 +000019 "android.hardware.keymaster-V4",
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070020 ],
21 stability: "vintf",
22 backend: {
23 java: {
Ilya Matyukhin8513ef22020-10-21 16:42:38 -070024 platform_apis: true,
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070025 },
26 cpp: {
27 enabled: false,
28 },
29 },
Jiyong Park703e9792022-03-22 14:18:48 +090030 versions_with_info: [
31 {
32 version: "1",
33 imports: [
34 "android.hardware.biometrics.common-V1",
35 "android.hardware.common-V2",
36 "android.hardware.keymaster-V3",
37 ],
38 },
39 {
40 version: "2",
41 imports: [
42 "android.hardware.biometrics.common-V2",
43 "android.hardware.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.common-V2",
52 "android.hardware.keymaster-V4",
53 ],
54 },
Jiyong Park703e9792022-03-22 14:18:48 +090055
56 ],
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000057 frozen: true,
Jiyong Park703e9792022-03-22 14:18:48 +090058
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070059}