1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_STATIC_JAVA_LIBRARIES := android-support-test 5 6# Build all java files in the java subdirectory 7LOCAL_SRC_FILES := $(call all-subdir-java-files) 8 9# The name of the jar file to create 10LOCAL_MODULE := apct-perftests-utils 11 12# Build a static jar file. 13include $(BUILD_STATIC_JAVA_LIBRARY)