Android.mk revision b2119af7f4ced0ecfefd4c7388f86b4e3a3ea7d8
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	VendorTagDescriptor.cpp
40
41LOCAL_SHARED_LIBRARIES := \
42	libcutils \
43	libutils \
44	liblog \
45	libbinder \
46	libhardware \
47	libui \
48	libgui \
49	libcamera_metadata \
50
51LOCAL_C_INCLUDES += \
52	system/media/camera/include \
53	system/media/private/camera/include \
54
55LOCAL_MODULE:= libcamera_client
56
57include $(BUILD_SHARED_LIBRARY)
58