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@1.0-impl", 13 defaults: ["hidl_defaults"], 14 proprietary: true, 15 srcs: [ 16 "CameraDevice.cpp", 17 ], 18 shared_libs: [ 19 "libhidlbase", 20 "libhidlmemory", 21 "libutils", 22 "android.hardware.camera.device@1.0", 23 "android.hardware.camera.common@1.0", 24 "android.hardware.graphics.allocator@2.0", 25 "android.hardware.graphics.mapper@2.0", 26 "android.hardware.graphics.mapper@3.0", 27 "android.hardware.graphics.mapper@4.0", 28 "android.hardware.graphics.common@1.0", 29 "android.hidl.allocator@1.0", 30 "android.hidl.memory@1.0", 31 "libcutils", 32 "liblog", 33 "libgralloctypes", 34 "libhardware", 35 "libcamera_metadata", 36 "libui", 37 ], 38 static_libs: [ 39 "android.hardware.camera.common@1.0-helper", 40 ], 41 header_libs: [ 42 "media_plugin_headers", 43 ], 44 export_include_dirs: ["."], 45} 46