summaryrefslogtreecommitdiff
path: root/emulator/car_emulator_interfaces/aidl/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/car_emulator_interfaces/aidl/Android.bp')
-rw-r--r--emulator/car_emulator_interfaces/aidl/Android.bp42
1 files changed, 42 insertions, 0 deletions
diff --git a/emulator/car_emulator_interfaces/aidl/Android.bp b/emulator/car_emulator_interfaces/aidl/Android.bp
new file mode 100644
index 0000000..a3345b6
--- /dev/null
+++ b/emulator/car_emulator_interfaces/aidl/Android.bp
@@ -0,0 +1,42 @@
+// This is the expected build file, but it may not be right in all cases
+
+package {
+ // See: http://go/android-license-faq
+ // A large-scale-change added 'default_applicable_licenses' to import
+ // all of the 'license_kinds' from "device_generic_car_license"
+ // to get the below license kinds:
+ // SPDX-license-identifier-Apache-2.0
+ default_applicable_licenses: ["device_generic_car_license"],
+}
+
+aidl_interface {
+ name: "device.generic.car.emulator-aidl",
+ vendor_available: true,
+ srcs: ["device/generic/car/emulator/*.aidl"],
+ imports: [
+ "android.hardware.automotive.vehicle-V3",
+ "android.hardware.automotive.vehicle.property-V3",
+ ],
+ stability: "vintf",
+ backend: {
+ cpp: {
+ enabled: false,
+ },
+ java: {
+ enabled: false,
+ },
+ ndk: {
+ enabled: true,
+ },
+ },
+ versions_with_info: [
+ {
+ version: "1",
+ imports: [
+ "android.hardware.automotive.vehicle-V3",
+ "android.hardware.automotive.vehicle.property-V3",
+ ],
+ },
+ ],
+
+}