• 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    host_supported: true,
15    imports: [
16        "android.hardware.common-V2",
17        "android.hardware.common.fmq-V1",
18    ],
19    stability: "vintf",
20    backend: {
21        cpp: {
22            enabled: false,
23        },
24        java: {
25            enabled: false,
26        },
27    },
28    versions_with_info: [
29        {
30            version: "1",
31            imports: [
32                "android.hardware.common-V2",
33                "android.hardware.common.fmq-V1",
34            ],
35        },
36        {
37            version: "2",
38            imports: [
39                "android.hardware.common-V2",
40                "android.hardware.common.fmq-V1",
41            ],
42        },
43
44    ],
45    frozen: true,
46
47}
48