mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Both media drm and HWC can share this common base code. Run the following commands to freeze the aidl: (1) m android.hardware.drm.common-update-api && m android.hardware.drm.common-freeze-api (2) system/tools/aidl/build/hash_gen.sh hardware/interfaces/drm/aidl/aidl_api/android.hardware.drm/1 latest-version hardware/interfaces/drm/aidl/aidl_api/android.hardware.drm/1/.hash Bug: 293945485 Test: manual Change-Id: I9e90ada03144b49245dc6b55a0fb2fa2eb6f3893
36 lines
860 B
Plaintext
36 lines
860 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.common",
|
|
vendor_available: true,
|
|
srcs: ["android/hardware/drm/*.aidl"],
|
|
stability: "vintf",
|
|
backend: {
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
java: {
|
|
sdk_version: "module_current",
|
|
},
|
|
ndk: {
|
|
min_sdk_version: "34",
|
|
},
|
|
},
|
|
double_loadable: true,
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: [],
|
|
},
|
|
],
|
|
frozen: true,
|
|
|
|
}
|