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.provider", 13 host_supported: true, 14 vendor_available: true, 15 srcs: [ 16 "android/hardware/camera/provider/*.aidl", 17 ], 18 imports: [ 19 "android.hardware.camera.device-V3", 20 "android.hardware.camera.common-V1", 21 ], 22 frozen: true, 23 stability: "vintf", 24 backend: { 25 java: { 26 enabled: false, 27 }, 28 cpp: { 29 enabled: false, 30 }, 31 rust: { 32 enabled: true, 33 }, 34 }, 35 versions_with_info: [ 36 { 37 version: "1", 38 imports: [ 39 "android.hardware.camera.device-V1", 40 "android.hardware.camera.common-V1", 41 ], 42 }, 43 { 44 version: "2", 45 imports: [ 46 "android.hardware.camera.device-V2", 47 "android.hardware.camera.common-V1", 48 ], 49 }, 50 { 51 version: "3", 52 imports: [ 53 "android.hardware.camera.device-V3", 54 "android.hardware.camera.common-V1", 55 ], 56 }, 57 58 ], 59 60} 61