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