blob: f2e02e332bfce71bc75c4af654336e1c1d0afe71 [file] [log] [blame]
Lorenzo Colitti35402eb2016-02-19 13:32:30 +09001#########################################################################
2# Build FrameworksUtilTests package
3#########################################################################
4
5LOCAL_PATH:= $(call my-dir)
6include $(CLEAR_VARS)
7
8# We only want this apk build for tests.
9LOCAL_MODULE_TAGS := tests
10
11# Include all test java files.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
Svetoslav Ganov04df7382016-05-10 18:55:47 -070013LOCAL_SRC_FILES += src/android/util/IRemoteMemoryIntArray.aidl
Lorenzo Colitti35402eb2016-02-19 13:32:30 +090014
Svetoslav Ganov74c99832016-12-05 20:07:20 -080015LOCAL_JNI_SHARED_LIBRARIES := libmemoryintarraytest libcutils libc++
16
Lorenzo Colitti35402eb2016-02-19 13:32:30 +090017LOCAL_STATIC_JAVA_LIBRARIES := \
Mitchell Wills634c1f92016-02-18 18:01:33 -080018 android-support-test \
Lorenzo Colitti7df1a822016-10-28 12:37:38 +090019 frameworks-base-testutils \
Paul Duffinf71d5b52017-05-09 15:52:46 +010020 mockito-target-minus-junit4 \
21 legacy-android-tests
Lorenzo Colitti35402eb2016-02-19 13:32:30 +090022
23LOCAL_JAVA_LIBRARIES := android.test.runner
24
25LOCAL_PACKAGE_NAME := FrameworksUtilTests
26
27LOCAL_CERTIFICATE := platform
28
Dan Shi7f2afd22017-03-17 10:21:28 -070029LOCAL_COMPATIBILITY_SUITE := device-tests
30
Lorenzo Colitti35402eb2016-02-19 13:32:30 +090031include $(BUILD_PACKAGE)
Paul Duffinf71d5b52017-05-09 15:52:46 +010032