1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := tests 5 6LOCAL_SRC_FILES := \ 7 $(call all-subdir-java-files) 8 9LOCAL_JAVA_LIBRARIES := \ 10 android.test.runner.stubs \ 11 org.apache.http.legacy \ 12 android.test.base.stubs \ 13 14LOCAL_SDK_VERSION := current 15 16LOCAL_STATIC_JAVA_LIBRARIES := junit 17 18LOCAL_PACKAGE_NAME := LegacyCoreTests 19 20include $(BUILD_PACKAGE) 21