blob: fa518fff61bc494af49d516353b25772247b14f0 [file] [log] [blame]
Igor Murashkin1d880232013-02-20 16:50:13 -08001CAMERA_CLIENT_LOCAL_PATH:= $(call my-dir)
2include $(call all-subdir-makefiles)
Mathias Agopian3cf61352010-02-09 17:46:37 -08003include $(CLEAR_VARS)
4
Igor Murashkin1d880232013-02-20 16:50:13 -08005LOCAL_PATH := $(CAMERA_CLIENT_LOCAL_PATH)
6
Mathias Agopian3cf61352010-02-09 17:46:37 -08007LOCAL_SRC_FILES:= \
8 Camera.cpp \
Igor Murashkin7efa5202013-02-13 15:53:56 -08009 CameraMetadata.cpp \
Mathias Agopian3cf61352010-02-09 17:46:37 -080010 CameraParameters.cpp \
11 ICamera.cpp \
12 ICameraClient.cpp \
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080013 ICameraService.cpp \
Igor Murashkinbfc99152013-02-27 12:55:20 -080014 ICameraServiceListener.cpp \
Wu-cheng Li4ca2c7c2011-06-01 17:22:24 +080015 ICameraRecordingProxy.cpp \
Igor Murashkin634a5152013-02-20 17:15:11 -080016 ICameraRecordingProxyListener.cpp \
17 IProCameraUser.cpp \
18 IProCameraCallbacks.cpp \
19 ProCamera.cpp \
Igor Murashkinc073ba52013-02-26 14:32:34 -080020 CameraBase.cpp \
Mathias Agopian3cf61352010-02-09 17:46:37 -080021
22LOCAL_SHARED_LIBRARIES := \
23 libcutils \
24 libutils \
Ying Wangda0dc0a2013-04-09 21:53:49 -070025 liblog \
Mathias Agopian3cf61352010-02-09 17:46:37 -080026 libbinder \
27 libhardware \
Jamie Gennisbfa33aa2010-12-20 11:51:31 -080028 libui \
Igor Murashkin7efa5202013-02-13 15:53:56 -080029 libgui \
30 libcamera_metadata \
31
32LOCAL_C_INCLUDES += \
Igor Murashkin1d880232013-02-20 16:50:13 -080033 system/media/camera/include \
Mathias Agopian3cf61352010-02-09 17:46:37 -080034
35LOCAL_MODULE:= libcamera_client
36
Mathias Agopian3cf61352010-02-09 17:46:37 -080037include $(BUILD_SHARED_LIBRARY)