• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10aidl_interface {
11    name: "android.hardware.biometrics.face",
12    vendor_available: true,
13    srcs: [
14        "android/hardware/biometrics/face/**/*.aidl",
15    ],
16    imports: [
17        "android.hardware.biometrics.common",
18        "android.hardware.common-V2",
19        "android.hardware.keymaster-V3",
20    ],
21    stability: "vintf",
22    backend: {
23        java: {
24            platform_apis: true,
25        },
26        cpp: {
27            enabled: false,
28        },
29    },
30    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        },
47
48    ],
49
50}
51