2012-10-24 17:45:23 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := screenshot.c
|
|
|
|
|
|
|
|
LOCAL_MODULE := screenshot
|
|
|
|
|
2013-04-10 04:55:39 +00:00
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils libz liblog
|
2012-10-24 17:45:23 +00:00
|
|
|
LOCAL_STATIC_LIBRARIES := libpng
|
2013-08-26 23:48:46 +00:00
|
|
|
LOCAL_C_INCLUDES += external/zlib external/libpng
|
2012-10-24 17:45:23 +00:00
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|