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.camera.device", 12 vendor_available: true, 13 srcs: ["android/hardware/camera/device/*.aidl"], 14 stability: "vintf", 15 imports: [ 16 "android.hardware.common-V2", 17 "android.hardware.common.fmq-V1", 18 "android.hardware.camera.common", 19 "android.hardware.camera.metadata", 20 "android.hardware.graphics.common", 21 ], 22 backend: { 23 cpp: { 24 enabled: false, 25 }, 26 java: { 27 sdk_version: "module_current", 28 enabled: false, 29 }, 30 ndk: { 31 vndk: { 32 enabled: true, 33 }, 34 }, 35 }, 36 versions_with_info: [ 37 { 38 version: "1", 39 imports: [ 40 "android.hardware.common-V2", 41 "android.hardware.common.fmq-V1", 42 "android.hardware.camera.common-V1", 43 "android.hardware.camera.metadata-V1", 44 "android.hardware.graphics.common-V3", 45 ], 46 }, 47 ], 48 49} 50