1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := user 5 6LOCAL_SRC_FILES := $(call all-java-files-under,src) 7 8# TODO: Remove dependency of application on the test runner (android.test.runner) 9# library. 10LOCAL_JAVA_LIBRARIES := android.test.runner 11 12LOCAL_STATIC_JAVA_LIBRARIES := googlelogin-client 13 14LOCAL_PACKAGE_NAME := Calendar 15 16include $(BUILD_PACKAGE) 17 18# Use the following include to make our test apk. 19include $(call all-makefiles-under,$(LOCAL_PATH)) 20