blob: faf04b119e7bd7c06fa3851b8cb18e0800340424 [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 Ganov1181f442016-12-08 23:58:02 +000015LOCAL_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 Colitti9997f142016-10-28 12:37:38 +090019 frameworks-base-testutils \
Mitchell Wills634c1f92016-02-18 18:01:33 -080020 mockito-target
Lorenzo Colitti35402eb2016-02-19 13:32:30 +090021
22LOCAL_JAVA_LIBRARIES := android.test.runner
23
24LOCAL_PACKAGE_NAME := FrameworksUtilTests
25
26LOCAL_CERTIFICATE := platform
27
28include $(BUILD_PACKAGE)
Svetoslav Ganov1181f442016-12-08 23:58:02 +000029
30include $(call all-makefiles-under,$(LOCAL_PATH))