Android.mk revision 3cf613507f1e2f7bd932d921a6e222e426fd3be4
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	Camera.cpp \
6	CameraParameters.cpp \
7	ICamera.cpp \
8	ICameraClient.cpp \
9	ICameraService.cpp
10
11LOCAL_SHARED_LIBRARIES := \
12	libcutils \
13	libutils \
14	libbinder \
15	libhardware \
16	libsurfaceflinger_client \
17	libui
18
19LOCAL_MODULE:= libcamera_client
20
21ifeq ($(TARGET_SIMULATOR),true)
22    LOCAL_LDLIBS += -lpthread
23endif
24
25include $(BUILD_SHARED_LIBRARY)
26