blob: 42e0a9200b1ea5518249f83383b774e4efd8de2b [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 Moreland98ba8fb2020-01-06 13:40:51 -08004 name: "test-android.hardware.vibrator-ext",
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 },
29}