mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 16:30:57 +00:00
Required to automate AIDL finalization - makes errors show up now instead of later. Bug: 188871598 Test: build Change-Id: Ia38678a7dbc0abc0c0d19fa0794f0f80b2638156 Merged-In: I382dea5d13582817959001246240141e83d8172d
40 lines
1002 B
Plaintext
40 lines
1002 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.camera.provider",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"android/hardware/camera/provider/*.aidl",
|
|
],
|
|
imports: [
|
|
"android.hardware.camera.device-V1",
|
|
"android.hardware.camera.common-V1",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: [
|
|
"android.hardware.camera.device-V1",
|
|
"android.hardware.camera.common-V1",
|
|
],
|
|
},
|
|
],
|
|
|
|
}
|