Makefile文件  |  23行  |  579 B

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

LOCAL_MODULE := Robolectric_junit

LOCAL_JAVA_LIBRARIES := \
  Robolectric_annotations \
  Robolectric_shadowapi \
  Robolectric_sandbox \
  Robolectric_utils \
  robolectric-asm-commons-6.0 \
  robolectric-asm-tree-6.0 \
  robolectric-junit-4.12 \
  robolectric-asm-6.0 \
  robolectric-guava-20.0 \
  jsr305lib

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

include $(BUILD_HOST_JAVA_LIBRARY)