blob: 48b757c30cd1950da9cba5686538909e1e241185 [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 \
Paul Duffin8aeb59e2017-01-10 12:08:23 +000015 junit \
16 legacy-android-test \
Felipe Lemee53e85f2015-11-17 17:37:53 -080017
18LOCAL_PACKAGE_NAME := ShellTests
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)