blob: 4d544e11fb341664b7f7691be2e9735c070ff960 [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -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
27 // This happens to use types from a core interface, so we import it, but
28 // this won't always be needed.
29 imports: [
Steven Moreland98ba8fb2020-01-06 13:40:51 -080030 "android.hardware.vibrator",
Steven Moreland8ba8c032019-11-18 16:23:39 -080031 ],
32
33 backend: {
34 java: {
35 enabled: false,
36 },
37 },
Jeongik Chacfb37482020-04-08 16:23:55 +090038 versions: ["1"],
Steven Moreland8ba8c032019-11-18 16:23:39 -080039}