blob: 75d1193dc4fbd29bd2e49a9df9f3016c322472c6 [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -08001package {
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
Steven Moreland8ba8c032019-11-18 16:23:39 -080010aidl_interface {
11 // This is an example test interface showing how to add functionality
12 // with setExtension/getExtension
Steven Morelanddac21c42020-03-09 12:05:29 -070013 name: "android.hardware.tests.extension.vibrator",
Steven Moreland8ba8c032019-11-18 16:23:39 -080014 vendor_available: true,
15 srcs: [
16 // Using android.hardware as the package because this is in
17 // hardware/interfaces. For custom interfaces, normally you
18 // would use a different package.
19 "android/hardware/tests/extension/vibrator/Directionality.aidl",
20 "android/hardware/tests/extension/vibrator/ICustomVibrator.aidl",
21 "android/hardware/tests/extension/vibrator/VendorEffect.aidl",
22 ],
23
24 // This is agreeing to keep the interface stable.
25 stability: "vintf",
26
Jiyong Park41186072021-06-04 12:10:18 +090027 // This is a testing-purpose interface. Fine to use unstable version on REL platform.
28 owner: "test",
29
Steven Moreland8ba8c032019-11-18 16:23:39 -080030 // This happens to use types from a core interface, so we import it, but
31 // this won't always be needed.
32 imports: [
Steven Moreland98ba8fb2020-01-06 13:40:51 -080033 "android.hardware.vibrator",
Steven Moreland8ba8c032019-11-18 16:23:39 -080034 ],
35
36 backend: {
37 java: {
38 enabled: false,
39 },
40 },
Jeongik Chacfb37482020-04-08 16:23:55 +090041 versions: ["1"],
Steven Moreland8ba8c032019-11-18 16:23:39 -080042}