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