xref: /aosp_15_r20/hardware/interfaces/sensors/aidl/Android.bp (revision 4d7e907c777eeecc4c5bd7cf640a754fac206ff7)
1package {
2    default_team: "trendy_team_android_sensors",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "hardware_interfaces_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11aidl_interface {
12    name: "android.hardware.sensors",
13    vendor_available: true,
14    srcs: ["android/hardware/sensors/*.aidl"],
15    host_supported: true,
16    imports: [
17        "android.hardware.common-V2",
18        "android.hardware.common.fmq-V1",
19    ],
20    stability: "vintf",
21    backend: {
22        cpp: {
23            enabled: false,
24        },
25        java: {
26            enabled: false,
27        },
28    },
29    versions_with_info: [
30        {
31            version: "1",
32            imports: [
33                "android.hardware.common-V2",
34                "android.hardware.common.fmq-V1",
35            ],
36        },
37        {
38            version: "2",
39            imports: [
40                "android.hardware.common-V2",
41                "android.hardware.common.fmq-V1",
42            ],
43        },
44
45    ],
46    frozen: false,
47
48}
49