blob: 0424eb070474c69993405864139da0cedfe16cf7 [file] [log] [blame]
Felipe Lemee53e85f2015-11-17 17:37:53 -08001
2LOCAL_PATH := $(call my-dir)
3include $(CLEAR_VARS)
4
5LOCAL_MODULE_TAGS := tests
6
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8
9LOCAL_JAVA_LIBRARIES := android.test.runner
10
Felipe Leme47ec8be2016-08-12 15:55:17 -070011LOCAL_STATIC_JAVA_LIBRARIES := \
12 android-support-test \
Makoto Onukiff329c42017-01-05 11:19:56 -080013 mockito-target-minus-junit4 \
Felipe Leme47ec8be2016-08-12 15:55:17 -070014 ub-uiautomator \
Felipe Lemee53e85f2015-11-17 17:37:53 -080015
16LOCAL_PACKAGE_NAME := ShellTests
17LOCAL_INSTRUMENTATION_FOR := Shell
18
19LOCAL_CERTIFICATE := platform
20
21include $(BUILD_PACKAGE)