1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := optional 5 6LOCAL_SRC_FILES := $(call all-java-files-under, src) 7 8LOCAL_PACKAGE_NAME := Camera 9#LOCAL_SDK_VERSION := current 10 11LOCAL_JNI_SHARED_LIBRARIES := libjni_mosaic 12 13LOCAL_REQUIRED_MODULES := libjni_mosaic 14 15LOCAL_PROGUARD_FLAG_FILES := proguard.flags 16 17include $(BUILD_PACKAGE) 18 19ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),) 20# Use the following include to make our test apk. 21include $(call all-makefiles-under, $(LOCAL_PATH)) 22endif 23