summaryrefslogtreecommitdiff
path: root/emulator/car_emulator_interfaces/aidl/Android.bp
blob: a3345b679ae9defd843a90af0ec609c819292941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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",
            ],
        },
    ],

}