aboutsummaryrefslogtreecommitdiff
path: root/junit/Android.mk
blob: 9953fef8130ebd0df7bbe8340f82338683c6b184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
###########################################
# 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-hamcrest-core-1.3 \
  robolectric-junit-4.12 \
  robolectric-asm-6.0 \
  robolectric-guava-20.0 \
  jsr305

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

include $(BUILD_HOST_JAVA_LIBRARY)