mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
In order to provide a more descriptive name, and to be consistent with HIDL, the stable AIDL package names are switching from vintf-vibrator format to the package format (android.hardware.vibrator). Bug: N/A Test: all build time Change-Id: I52959482898f329ad1b3a3a5b345a0c6dc72197d
30 lines
952 B
Plaintext
30 lines
952 B
Plaintext
aidl_interface {
|
|
// This is an example test interface showing how to add functionality
|
|
// with setExtension/getExtension
|
|
name: "test-android.hardware.vibrator-ext",
|
|
vendor_available: true,
|
|
srcs: [
|
|
// Using android.hardware as the package because this is in
|
|
// hardware/interfaces. For custom interfaces, normally you
|
|
// would use a different package.
|
|
"android/hardware/tests/extension/vibrator/Directionality.aidl",
|
|
"android/hardware/tests/extension/vibrator/ICustomVibrator.aidl",
|
|
"android/hardware/tests/extension/vibrator/VendorEffect.aidl",
|
|
],
|
|
|
|
// This is agreeing to keep the interface stable.
|
|
stability: "vintf",
|
|
|
|
// This happens to use types from a core interface, so we import it, but
|
|
// this won't always be needed.
|
|
imports: [
|
|
"android.hardware.vibrator",
|
|
],
|
|
|
|
backend: {
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|