| Jeff Sharkey | b49cb25 | 2013-03-07 19:58:04 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
| 5 | |
| 6 | LOCAL_SRC_FILES := $(call all-java-files-under, java) |
| Alan Viverette | 4e7746c | 2016-04-15 17:18:36 -0400 | [diff] [blame] | 7 | LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION) |
| Jeff Sharkey | b49cb25 | 2013-03-07 19:58:04 -0800 | [diff] [blame] | 8 | |
| Alan Viverette | 4e7746c | 2016-04-15 17:18:36 -0400 | [diff] [blame] | 9 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 10 | android-support-test \ |
| 11 | android-support-v4 \ |
| 12 | mockito-target |
| 13 | |
| Jeff Sharkey | 97c2b8b | 2013-05-30 14:22:42 -0700 | [diff] [blame] | 14 | LOCAL_PACKAGE_NAME := AndroidSupportTests |
| Jeff Sharkey | b49cb25 | 2013-03-07 19:58:04 -0800 | [diff] [blame] | 15 | |
| 16 | include $(BUILD_PACKAGE) |