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 10cc_library_shared { 11 name: "camera.device@3.3-impl", 12 defaults: ["hidl_defaults"], 13 proprietary: true, 14 srcs: [ 15 "CameraDevice.cpp", 16 "CameraDeviceSession.cpp", 17 "convert.cpp", 18 ], 19 shared_libs: [ 20 "libhidlbase", 21 "libutils", 22 "libcutils", 23 "camera.device@3.2-impl", 24 "android.hardware.camera.device@3.2", 25 "android.hardware.camera.device@3.3", 26 "android.hardware.camera.provider@2.4", 27 "android.hardware.graphics.mapper@2.0", 28 "android.hardware.graphics.mapper@3.0", 29 "android.hardware.graphics.mapper@4.0", 30 "liblog", 31 "libgralloctypes", 32 "libhardware", 33 "libcamera_metadata", 34 "libfmq", 35 ], 36 static_libs: [ 37 "android.hardware.camera.common@1.0-helper", 38 ], 39 export_include_dirs: ["."], 40 export_shared_lib_headers: [ 41 "libfmq", 42 ], 43} 44