Home | History | Annotate | Download | only in junit
      1 ###########################################
      2 # Compile Robolectric junit
      3 ###########################################
      4 LOCAL_PATH := $(call my-dir)
      5 include $(CLEAR_VARS)
      6 
      7 LOCAL_MODULE := Robolectric_junit
      8 
      9 LOCAL_JAVA_LIBRARIES := \
     10   Robolectric_annotations \
     11   Robolectric_shadowapi \
     12   Robolectric_sandbox \
     13   Robolectric_utils \
     14   robolectric-asm-commons-6.0 \
     15   robolectric-asm-tree-6.0 \
     16   robolectric-junit-4.12 \
     17   robolectric-asm-6.0 \
     18   robolectric-guava-20.0 \
     19   jsr305lib
     20 
     21 LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
     22 
     23 include $(BUILD_HOST_JAVA_LIBRARY)