Android.mk revision 5698d4461a260dbf208484383f692b03c6473e74
1# Copyright 2010 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15CAMERA_CLIENT_LOCAL_PATH:= $(call my-dir)
16include $(call all-subdir-makefiles)
17include $(CLEAR_VARS)
18
19LOCAL_PATH := $(CAMERA_CLIENT_LOCAL_PATH)
20
21LOCAL_SRC_FILES:= \
22	Camera.cpp \
23	CameraMetadata.cpp \
24	CameraParameters.cpp \
25	CaptureResult.cpp \
26	ICamera.cpp \
27	ICameraClient.cpp \
28	ICameraService.cpp \
29	ICameraServiceListener.cpp \
30	ICameraRecordingProxy.cpp \
31	ICameraRecordingProxyListener.cpp \
32	IProCameraUser.cpp \
33	IProCameraCallbacks.cpp \
34	camera2/ICameraDeviceUser.cpp \
35	camera2/ICameraDeviceCallbacks.cpp \
36	camera2/CaptureRequest.cpp \
37	ProCamera.cpp \
38	CameraBase.cpp \
39	CameraUtils.cpp \
40	VendorTagDescriptor.cpp
41
42LOCAL_SHARED_LIBRARIES := \
43	libcutils \
44	libutils \
45	liblog \
46	libbinder \
47	libhardware \
48	libui \
49	libgui \
50	libcamera_metadata \
51
52LOCAL_C_INCLUDES += \
53	system/media/camera/include \
54	system/media/private/camera/include \
55
56LOCAL_MODULE:= libcamera_client
57
58include $(BUILD_SHARED_LIBRARY)
59