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 \ |
| 9 | ICameraService.cpp |
| 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | libcutils \ |
| 13 | libutils \ |
| 14 | libbinder \ |
| 15 | libhardware \ |
| 16 | libsurfaceflinger_client \ |
Jamie Gennis | bfa33aa | 2010-12-20 11:51:31 -0800 | [diff] [blame^] | 17 | libui \ |
| 18 | libgui |
Mathias Agopian | 3cf6135 | 2010-02-09 17:46:37 -0800 | [diff] [blame] | 19 | |
| 20 | LOCAL_MODULE:= libcamera_client |
| 21 | |
| 22 | ifeq ($(TARGET_SIMULATOR),true) |
| 23 | LOCAL_LDLIBS += -lpthread |
| 24 | endif |
| 25 | |
| 26 | include $(BUILD_SHARED_LIBRARY) |