You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
5.9 KiB
193 lines
5.9 KiB
// Copyright 2018 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//
|
|
// libcameraservice
|
|
//
|
|
|
|
package {
|
|
default_applicable_licenses: [
|
|
"frameworks_av_services_camera_libcameraservice_license",
|
|
],
|
|
}
|
|
|
|
// Added automatically by a large-scale-change
|
|
// See: http://go/android-license-faq
|
|
license {
|
|
name: "frameworks_av_services_camera_libcameraservice_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: [
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
],
|
|
license_text: [
|
|
"NOTICE",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libcameraservice",
|
|
|
|
// Camera service source
|
|
|
|
srcs: [
|
|
"CameraService.cpp",
|
|
"CameraFlashlight.cpp",
|
|
"common/Camera2ClientBase.cpp",
|
|
"common/CameraDeviceBase.cpp",
|
|
"common/CameraOfflineSessionBase.cpp",
|
|
"common/CameraProviderManager.cpp",
|
|
"common/DepthPhotoProcessor.cpp",
|
|
"common/FrameProcessorBase.cpp",
|
|
"api1/Camera2Client.cpp",
|
|
"api1/client2/Parameters.cpp",
|
|
"api1/client2/FrameProcessor.cpp",
|
|
"api1/client2/StreamingProcessor.cpp",
|
|
"api1/client2/JpegProcessor.cpp",
|
|
"api1/client2/CallbackProcessor.cpp",
|
|
"api1/client2/JpegCompressor.cpp",
|
|
"api1/client2/CaptureSequencer.cpp",
|
|
"api1/client2/ZslProcessor.cpp",
|
|
"api2/CameraDeviceClient.cpp",
|
|
"api2/CameraOfflineSessionClient.cpp",
|
|
"api2/CompositeStream.cpp",
|
|
"api2/DepthCompositeStream.cpp",
|
|
"api2/HeicEncoderInfoManager.cpp",
|
|
"api2/HeicCompositeStream.cpp",
|
|
"device3/BufferUtils.cpp",
|
|
"device3/Camera3Device.cpp",
|
|
"device3/Camera3OfflineSession.cpp",
|
|
"device3/Camera3Stream.cpp",
|
|
"device3/Camera3IOStreamBase.cpp",
|
|
"device3/Camera3InputStream.cpp",
|
|
"device3/Camera3OutputStream.cpp",
|
|
"device3/Camera3FakeStream.cpp",
|
|
"device3/Camera3SharedOutputStream.cpp",
|
|
"device3/StatusTracker.cpp",
|
|
"device3/Camera3BufferManager.cpp",
|
|
"device3/Camera3StreamSplitter.cpp",
|
|
"device3/CoordinateMapper.cpp",
|
|
"device3/DistortionMapper.cpp",
|
|
"device3/ZoomRatioMapper.cpp",
|
|
"device3/RotateAndCropMapper.cpp",
|
|
"device3/Camera3OutputStreamInterface.cpp",
|
|
"device3/Camera3OutputUtils.cpp",
|
|
"device3/Camera3DeviceInjectionMethods.cpp",
|
|
"device3/UHRCropAndMeteringRegionMapper.cpp",
|
|
"gui/RingBufferConsumer.cpp",
|
|
"hidl/AidlCameraDeviceCallbacks.cpp",
|
|
"hidl/AidlCameraServiceListener.cpp",
|
|
"hidl/Convert.cpp",
|
|
"hidl/HidlCameraDeviceUser.cpp",
|
|
"hidl/HidlCameraService.cpp",
|
|
"utils/CameraServiceProxyWrapper.cpp",
|
|
"utils/CameraThreadState.cpp",
|
|
"utils/CameraTraces.cpp",
|
|
"utils/AutoConditionLock.cpp",
|
|
"utils/ExifUtils.cpp",
|
|
"utils/SessionConfigurationUtils.cpp",
|
|
"utils/SessionStatsBuilder.cpp",
|
|
"utils/TagMonitor.cpp",
|
|
"utils/LatencyHistogram.cpp",
|
|
],
|
|
|
|
header_libs: [
|
|
"libmediadrm_headers",
|
|
"libmediametrics_headers",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libdl",
|
|
"libexif",
|
|
"libui",
|
|
"liblog",
|
|
"libutilscallstack",
|
|
"libutils",
|
|
"libbinder",
|
|
"libactivitymanager_aidl",
|
|
"libpermission",
|
|
"libcutils",
|
|
"libmedia",
|
|
"libmediautils",
|
|
"libcamera_client",
|
|
"libcamera_metadata",
|
|
"libdynamic_depth",
|
|
"libfmq",
|
|
"libgui",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libimage_io",
|
|
"libjpeg",
|
|
"libmedia_codeclist",
|
|
"libmedia_omx",
|
|
"libmemunreachable",
|
|
"libsensorprivacy",
|
|
"libstagefright",
|
|
"libstagefright_foundation",
|
|
"libxml2",
|
|
"libyuv",
|
|
"android.frameworks.cameraservice.common@2.0",
|
|
"android.frameworks.cameraservice.service@2.0",
|
|
"android.frameworks.cameraservice.service@2.1",
|
|
"android.frameworks.cameraservice.service@2.2",
|
|
"android.frameworks.cameraservice.device@2.0",
|
|
"android.frameworks.cameraservice.device@2.1",
|
|
"android.hardware.camera.common@1.0",
|
|
"android.hardware.camera.provider@2.4",
|
|
"android.hardware.camera.provider@2.5",
|
|
"android.hardware.camera.provider@2.6",
|
|
"android.hardware.camera.provider@2.7",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.device@3.3",
|
|
"android.hardware.camera.device@3.4",
|
|
"android.hardware.camera.device@3.5",
|
|
"android.hardware.camera.device@3.6",
|
|
"android.hardware.camera.device@3.7",
|
|
"media_permission-aidl-cpp",
|
|
],
|
|
|
|
static_libs: [
|
|
"libprocessinfoservice_aidl",
|
|
"libbinderthreadstateutils",
|
|
"media_permission-aidl-cpp",
|
|
],
|
|
|
|
export_shared_lib_headers: [
|
|
"libbinder",
|
|
"libactivitymanager_aidl",
|
|
"libpermission",
|
|
"libcamera_client",
|
|
"libfmq",
|
|
"libsensorprivacy",
|
|
],
|
|
|
|
include_dirs: [
|
|
"system/media/private/camera/include",
|
|
"frameworks/native/include/media/openmax",
|
|
"frameworks/av/media/ndk",
|
|
"external/dynamic_depth/includes",
|
|
"external/dynamic_depth/internal",
|
|
],
|
|
|
|
export_include_dirs: ["."],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
"-Wno-ignored-qualifiers",
|
|
],
|
|
|
|
}
|