blob: 7f24a386e7349e847706e042536d876b727419d9 [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
Paul Duffinb8663072017-12-08 00:02:42 +00009LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base android.test.mock
Felipe Lemee53e85f2015-11-17 17:37:53 -080010
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 \
Paul Duffin8aeb59e2017-01-10 12:08:23 +000015 junit \
Felipe Lemee53e85f2015-11-17 17:37:53 -080016
17LOCAL_PACKAGE_NAME := ShellTests
Simran Basi473a16e2017-03-15 14:43:58 -070018LOCAL_COMPATIBILITY_SUITE := device-tests
Felipe Lemee53e85f2015-11-17 17:37:53 -080019LOCAL_INSTRUMENTATION_FOR := Shell
20
21LOCAL_CERTIFICATE := platform
22
23include $(BUILD_PACKAGE)