2022-01-14 01:50:17 +01:00
|
|
|
package {
|
2024-01-31 12:06:17 +01:00
|
|
|
default_team: "trendy_team_android_sensors",
|
2022-01-14 01:50:17 +01:00
|
|
|
// See: http://go/android-license-faq
|
|
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
|
|
// to get the below license kinds:
|
|
|
|
// SPDX-license-identifier-Apache-2.0
|
|
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
|
|
}
|
|
|
|
|
2021-10-13 18:12:37 +02:00
|
|
|
aidl_interface {
|
|
|
|
name: "android.hardware.sensors",
|
|
|
|
vendor_available: true,
|
|
|
|
srcs: ["android/hardware/sensors/*.aidl"],
|
2022-11-08 17:56:10 +01:00
|
|
|
host_supported: true,
|
2021-10-13 18:12:37 +02:00
|
|
|
imports: [
|
|
|
|
"android.hardware.common-V2",
|
|
|
|
"android.hardware.common.fmq-V1",
|
|
|
|
],
|
|
|
|
stability: "vintf",
|
|
|
|
backend: {
|
|
|
|
cpp: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
java: {
|
|
|
|
enabled: false,
|
|
|
|
},
|
|
|
|
},
|
2022-04-16 00:03:24 +02:00
|
|
|
versions_with_info: [
|
|
|
|
{
|
|
|
|
version: "1",
|
|
|
|
imports: [
|
|
|
|
"android.hardware.common-V2",
|
|
|
|
"android.hardware.common.fmq-V1",
|
|
|
|
],
|
|
|
|
},
|
2023-04-04 21:52:27 +02:00
|
|
|
{
|
|
|
|
version: "2",
|
|
|
|
imports: [
|
|
|
|
"android.hardware.common-V2",
|
|
|
|
"android.hardware.common.fmq-V1",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2022-04-16 00:03:24 +02:00
|
|
|
],
|
2023-04-04 21:52:27 +02:00
|
|
|
frozen: true,
|
2022-04-16 00:03:24 +02:00
|
|
|
|
2021-10-13 18:12:37 +02:00
|
|
|
}
|