1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := tests 5 6LOCAL_JAVA_LIBRARIES := android.test.runner 7 8LOCAL_SRC_FILES := $(call all-java-files-under, src) 9 10LOCAL_PACKAGE_NAME := CarrierConfigTests 11LOCAL_CERTIFICATE := platform 12 13LOCAL_INSTRUMENTATION_FOR := CarrierConfig 14 15include $(BUILD_PACKAGE) 16