Home | History | Annotate | Download | only in screencap
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES:= \
      5 	screencap.cpp
      6 
      7 LOCAL_SHARED_LIBRARIES := \
      8 	libcutils \
      9 	libutils \
     10 	libbinder \
     11 	libskia \
     12     libui \
     13     libgui
     14 
     15 LOCAL_MODULE:= screencap
     16 
     17 LOCAL_MODULE_TAGS := optional
     18 
     19 include $(BUILD_EXECUTABLE)
     20