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 11cc_library_shared { 12 name: "camera.device@3.2-impl", 13 defaults: ["hidl_defaults"], 14 proprietary: true, 15 srcs: [ 16 "CameraDevice.cpp", 17 "CameraDeviceSession.cpp", 18 "convert.cpp", 19 ], 20 shared_libs: [ 21 "libhidlbase", 22 "libutils", 23 "libcutils", 24 "android.hardware.camera.device@3.2", 25 "android.hardware.camera.provider@2.4", 26 "android.hardware.graphics.mapper@2.0", 27 "android.hardware.graphics.mapper@3.0", 28 "android.hardware.graphics.mapper@4.0", 29 "liblog", 30 "libgralloctypes", 31 "libhardware", 32 "libcamera_metadata", 33 "libfmq", 34 "libui", 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