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: "[email protected]", 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 "[email protected]", 25 "[email protected]", 26 "[email protected]", 27 "[email protected]", 28 "[email protected]", 29 "[email protected]", 30 "[email protected]", 31 "liblog", 32 "libgralloctypes", 33 "libhardware", 34 "libcamera_metadata", 35 "libfmq", 36 ], 37 static_libs: [ 38 "[email protected]", 39 ], 40 export_include_dirs: ["."], 41 export_shared_lib_headers: [ 42 "libfmq", 43 ], 44} 45