blob: b93ddde16e4ace1f1dad251f7dc7bf1215b0c2d5 [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
Anton Hanssonab6ec612018-02-23 12:57:51 +000018LOCAL_PRIVATE_PLATFORM_APIS := true
Simran Basi473a16e2017-03-15 14:43:58 -070019LOCAL_COMPATIBILITY_SUITE := device-tests
Felipe Lemee53e85f2015-11-17 17:37:53 -080020LOCAL_INSTRUMENTATION_FOR := Shell
21
22LOCAL_CERTIFICATE := platform
23
24include $(BUILD_PACKAGE)