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