Files
hardware_interfaces/drm/aidl/Android.bp
Jooyung Han f9a0be58d9 Set min_sdk_version for the Widevine APEX
Bug: 251299786
Test: build WV APEX with V and install it on U device
Change-Id: I51e387769631bb6dd821911fdae78f36b04b86c2
2023-03-28 06:57:46 +00:00

38 lines
935 B
Plaintext

package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "hardware_interfaces_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["hardware_interfaces_license"],
}
aidl_interface {
name: "android.hardware.drm",
vendor_available: true,
srcs: ["android/hardware/drm/*.aidl"],
stability: "vintf",
imports: [
"android.hardware.common-V2",
],
backend: {
cpp: {
enabled: false,
},
java: {
sdk_version: "module_current",
},
ndk: {
min_sdk_version: "UpsideDownCake",
},
},
double_loadable: true,
versions_with_info: [
{
version: "1",
imports: ["android.hardware.common-V2"],
},
],
}