1############################################## 2# Compile Robolectric annotations 3############################################## 4LOCAL_PATH := $(call my-dir) 5include $(CLEAR_VARS) 6 7LOCAL_MODULE := Robolectric_annotations 8 9LOCAL_JAVA_LIBRARIES := \ 10 Robolectric_shadowapi \ 11 robolectric-host-android_all \ 12 jsr305 13 14LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java) 15 16include $(BUILD_HOST_JAVA_LIBRARY)