1package { 2 default_team: "trendy_team_camera_framework", 3 // See: http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // all of the 'license_kinds' from "hardware_interfaces_license" 6 // to get the below license kinds: 7 // SPDX-license-identifier-Apache-2.0 8 default_applicable_licenses: ["hardware_interfaces_license"], 9} 10 11aidl_interface { 12 name: "android.hardware.camera.device", 13 vendor_available: true, 14 srcs: ["android/hardware/camera/device/*.aidl"], 15 frozen: true, 16 stability: "vintf", 17 imports: [ 18 "android.hardware.common-V2", 19 "android.hardware.common.fmq-V1", 20 "android.hardware.camera.common-V1", 21 "android.hardware.camera.metadata-V3", 22 "android.hardware.graphics.common-V5", 23 ], 24 backend: { 25 cpp: { 26 enabled: false, 27 }, 28 java: { 29 sdk_version: "module_current", 30 enabled: false, 31 }, 32 }, 33 versions_with_info: [ 34 { 35 version: "1", 36 imports: [ 37 "android.hardware.common-V2", 38 "android.hardware.common.fmq-V1", 39 "android.hardware.camera.common-V1", 40 "android.hardware.camera.metadata-V1", 41 "android.hardware.graphics.common-V5", 42 ], 43 }, 44 { 45 version: "2", 46 imports: [ 47 "android.hardware.common-V2", 48 "android.hardware.common.fmq-V1", 49 "android.hardware.camera.common-V1", 50 "android.hardware.camera.metadata-V2", 51 "android.hardware.graphics.common-V5", 52 ], 53 }, 54 { 55 version: "3", 56 imports: [ 57 "android.hardware.common-V2", 58 "android.hardware.common.fmq-V1", 59 "android.hardware.camera.common-V1", 60 "android.hardware.camera.metadata-V3", 61 "android.hardware.graphics.common-V5", 62 ], 63 }, 64 65 ], 66 67} 68