blob: a8fb395eda81655d9fb7da96f05044e6c8a13046 [file] [log] [blame]
Lucas Dupin1d3c00d52017-06-05 08:40:39 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_USE_AAPT2 := true
5LOCAL_MODULE_TAGS := tests
6
7LOCAL_PROTOC_OPTIMIZE_TYPE := nano
8
9# Include some source files directly to be able to access package members
10LOCAL_SRC_FILES := $(call all-java-files-under, src)
11
12LOCAL_JAVA_LIBRARIES := android.test.runner
Lucas Dupine2292a92017-07-06 14:35:30 -070013LOCAL_STATIC_JAVA_LIBRARIES := junit \
14 legacy-android-test \
15 android-support-test \
16 mockito-target-minus-junit4
Lucas Dupin1d3c00d52017-06-05 08:40:39 -070017
18LOCAL_CERTIFICATE := platform
19
20LOCAL_PACKAGE_NAME := InternalTests
Anton Hanssona3e79fb2018-02-23 12:57:51 +000021LOCAL_PRIVATE_PLATFORM_APIS := true
Lucas Dupin1d3c00d52017-06-05 08:40:39 -070022LOCAL_COMPATIBILITY_SUITE := device-tests
23
24include $(BUILD_PACKAGE)