• 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.sensors",
12    vendor_available: true,
13    srcs: ["android/hardware/sensors/*.aidl"],
14    imports: [
15        "android.hardware.common-V2",
16        "android.hardware.common.fmq-V1",
17    ],
18    stability: "vintf",
19    backend: {
20        cpp: {
21            enabled: false,
22        },
23        java: {
24            enabled: false,
25        },
26        ndk: {
27            vndk: {
28                enabled: true,
29            },
30        },
31    },
32    versions_with_info: [
33        {
34            version: "1",
35            imports: [
36                "android.hardware.common-V2",
37                "android.hardware.common.fmq-V1",
38            ],
39        },
40    ],
41
42}
43