blob: 6c8cd7894511baaaa5077348f933d574aedc4d63 [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 ],
Joshua McCloskey67310c32023-11-01 15:57:55 +000021 include_dirs: [
22 "frameworks/native/aidl/gui",
23 ],
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070024 stability: "vintf",
25 backend: {
26 java: {
Ilya Matyukhin8513ef22020-10-21 16:42:38 -070027 platform_apis: true,
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070028 },
29 cpp: {
30 enabled: false,
31 },
Joshua McCloskey67310c32023-11-01 15:57:55 +000032 ndk: {
33 additional_shared_libraries: [
34 "libnativewindow",
35 ],
36 },
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070037 },
Jiyong Park703e9792022-03-22 14:18:48 +090038 versions_with_info: [
39 {
40 version: "1",
41 imports: [
42 "android.hardware.biometrics.common-V1",
43 "android.hardware.common-V2",
44 "android.hardware.keymaster-V3",
45 ],
46 },
47 {
48 version: "2",
49 imports: [
50 "android.hardware.biometrics.common-V2",
51 "android.hardware.common-V2",
52 "android.hardware.keymaster-V3",
53 ],
54 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000055 {
56 version: "3",
57 imports: [
58 "android.hardware.biometrics.common-V3",
59 "android.hardware.common-V2",
60 "android.hardware.keymaster-V4",
61 ],
62 },
Jiyong Park703e9792022-03-22 14:18:48 +090063
64 ],
Joshua McCloskey67310c32023-11-01 15:57:55 +000065 frozen: false,
Jiyong Park703e9792022-03-22 14:18:48 +090066
Ilya Matyukhin457e9d82020-10-08 12:52:04 -070067}