Home | History | Annotate | Download | only in camera
      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 	ICameraRecordingProxy.cpp \
     11 	ICameraRecordingProxyListener.cpp
     12 
     13 LOCAL_SHARED_LIBRARIES := \
     14 	libcutils \
     15 	libutils \
     16 	libbinder \
     17 	libhardware \
     18 	libui \
     19 	libgui
     20 
     21 LOCAL_MODULE:= libcamera_client
     22 
     23 include $(BUILD_SHARED_LIBRARY)
     24