blob: fc001e928e80b2618251fab13ea3e7adff911fca [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
21LOCAL_COMPATIBILITY_SUITE := device-tests
22
23include $(BUILD_PACKAGE)