blob: c64779cb4cec3f48510cc70751cea88277ab130f [file] [log] [blame]
Steven Moreland8ba8c032019-11-18 16:23:39 -08001aidl_interface {
2 // This is an example test interface showing how to add functionality
3 // with setExtension/getExtension
Steven Morelanddac21c42020-03-09 12:05:29 -07004 name: "android.hardware.tests.extension.vibrator",
Steven Moreland8ba8c032019-11-18 16:23:39 -08005 vendor_available: true,
6 srcs: [
7 // Using android.hardware as the package because this is in
8 // hardware/interfaces. For custom interfaces, normally you
9 // would use a different package.
10 "android/hardware/tests/extension/vibrator/Directionality.aidl",
11 "android/hardware/tests/extension/vibrator/ICustomVibrator.aidl",
12 "android/hardware/tests/extension/vibrator/VendorEffect.aidl",
13 ],
14
15 // This is agreeing to keep the interface stable.
16 stability: "vintf",
17
18 // This happens to use types from a core interface, so we import it, but
19 // this won't always be needed.
20 imports: [
Steven Moreland98ba8fb2020-01-06 13:40:51 -080021 "android.hardware.vibrator",
Steven Moreland8ba8c032019-11-18 16:23:39 -080022 ],
23
24 backend: {
25 java: {
26 enabled: false,
27 },
28 },
Jeongik Chacfb37482020-04-08 16:23:55 +090029 versions: ["1"],
Steven Moreland8ba8c032019-11-18 16:23:39 -080030}