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