7d7a24d5f6
Test: Build Bug: 291142745 Change-Id: Ib0002feb982ffcc37fa7b69493c644b7a835cf4f
70 lines
1.8 KiB
Text
70 lines
1.8 KiB
Text
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.neuralnetworks",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
srcs: [
|
|
"android/hardware/neuralnetworks/*.aidl",
|
|
],
|
|
stability: "vintf",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
backend: {
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.neuralnetworks",
|
|
"test_com.android.neuralnetworks",
|
|
],
|
|
min_sdk_version: "30",
|
|
},
|
|
},
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
},
|
|
{
|
|
version: "2",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
},
|
|
{
|
|
version: "3",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
},
|
|
{
|
|
version: "4",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
},
|
|
|
|
],
|
|
|
|
}
|