1package {
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
10aidl_interface {
11    name: "android.hardware.drm",
12    vendor_available: true,
13    srcs: ["android/hardware/drm/*.aidl"],
14    stability: "vintf",
15    imports: [
16        "android.hardware.common-V2",
17    ],
18    backend: {
19        cpp: {
20            enabled: false,
21        },
22        java: {
23            sdk_version: "module_current",
24        },
25        ndk: {
26            min_sdk_version: "34",
27        },
28    },
29    double_loadable: true,
30    versions_with_info: [
31        {
32            version: "1",
33            imports: ["android.hardware.common-V2"],
34        },
35    ],
36
37}
38