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