2016-06-24 14:23:19 -07:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
2016-06-20 14:42:35 -07:00
|
|
|
|
2016-06-24 14:23:19 -07:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-test
|
2016-06-20 14:42:35 -07:00
|
|
|
|
2016-06-24 14:23:19 -07:00
|
|
|
# Build all java files in the java subdirectory
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
2016-06-20 14:42:35 -07:00
|
|
|
|
2016-06-24 14:23:19 -07:00
|
|
|
# The name of the jar file to create
|
|
|
|
LOCAL_MODULE := apct-perftests-utils
|
2016-06-20 14:42:35 -07:00
|
|
|
|
2016-06-24 14:23:19 -07:00
|
|
|
# Build a static jar file.
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|