Makefile文件  |  15行  |  391 B

##############################################
# Compile Robolectric annotations
##############################################
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := Robolectric_annotations

LOCAL_JAVA_LIBRARIES := \
  robolectric-host-android_all \
  jsr305lib

LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)

include $(BUILD_HOST_JAVA_LIBRARY)