mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 17:31:58 +00:00
AIDL interfaces which are vintf-stable have to be frozen in release. But these interfaces have been never frozen, so freeze them. - android.hardware.power - android.hardware.identity - android.hardware.keymaster - android.hardware.vibrator - android.hardware.light - android.hardware.tests.extension.vibrator Bug: 153500421 Bug: 153500550 Bug: 153511407 Bug: 153500549 Bug: 153501107 Bug: 153501202 Test: m Change-Id: I643c25fc695f9d1e874dcceb327d465c49e9cab6 Merged-In: I643c25fc695f9d1e874dcceb327d465c49e9cab6
31 lines
980 B
Plaintext
31 lines
980 B
Plaintext
aidl_interface {
|
|
// This is an example test interface showing how to add functionality
|
|
// with setExtension/getExtension
|
|
name: "android.hardware.tests.extension.vibrator",
|
|
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,
|
|
},
|
|
},
|
|
versions: ["1"],
|
|
}
|