Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | Camera.cpp \ |
| 6 | CameraParameters.cpp \ |
| 7 | ICamera.cpp \ |
| 8 | ICameraClient.cpp \ |
Wu-cheng Li | 4ca2c7c | 2011-06-01 17:22:24 +0800 | [diff] [blame^] | 9 | ICameraService.cpp \ |
| 10 | ICameraRecordingProxy.cpp \ |
| 11 | ICameraRecordingProxyListener.cpp |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := \ |
| 14 | libcutils \ |
| 15 | libutils \ |
| 16 | libbinder \ |
| 17 | libhardware \ |
Jamie Gennis | bfa33aa | 2010-12-20 11:51:31 -0800 | [diff] [blame] | 18 | libui \ |
| 19 | libgui |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 20 | |
| 21 | LOCAL_MODULE:= libcamera_client |
| 22 | |
| 23 | ifeq ($(TARGET_SIMULATOR),true) |
| 24 | LOCAL_LDLIBS += -lpthread |
| 25 | endif |
| 26 | |
| 27 | include $(BUILD_SHARED_LIBRARY) |