blob: 9f60da22f49f8e631750d01f4594e3ad6ef47c3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
Camera.cpp \
CameraParameters.cpp \
ICamera.cpp \
ICameraClient.cpp \
ICameraService.cpp \
ICameraRecordingProxy.cpp \
ICameraRecordingProxyListener.cpp
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
libbinder \
libhardware \
libui \
libgui
ifeq ($(BOARD_CAMERA_HAVE_ISO),true)
LOCAL_CFLAGS += -DHAVE_ISO
endif
ifeq ($(BOARD_USES_QCOM_HARDWARE),true)
LOCAL_CFLAGS += -DQCOM_HARDWARE
endif
LOCAL_MODULE:= libcamera_client
include $(BUILD_SHARED_LIBRARY)
|