1######################################################################### 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) 13LOCAL_SRC_FILES += src/android/util/IRemoteMemoryIntArray.aidl 14 15LOCAL_STATIC_JAVA_LIBRARIES := \ 16 android-support-test \ 17 mockito-target 18 19LOCAL_JAVA_LIBRARIES := android.test.runner 20 21LOCAL_PACKAGE_NAME := FrameworksUtilTests 22 23LOCAL_CERTIFICATE := platform 24 25include $(BUILD_PACKAGE) 26