13 lines
312 B
Makefile
13 lines
312 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, java)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := mockito-target android-support-v4
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
|
LOCAL_PACKAGE_NAME := AndroidSupportTests
|
|
|
|
include $(BUILD_PACKAGE)
|