1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := tests 5 6LOCAL_JAVA_LIBRARIES := framework-tests android.test.runner 7 8LOCAL_STATIC_JAVA_LIBRARIES := googlelogin-client 9 10# Resource unit tests use a private locale 11LOCAL_AAPT_FLAGS = -c xx_YY -c cs -c 160dpi -c 32dpi -c 240dpi 12 13LOCAL_SRC_FILES := \ 14 $(call all-subdir-java-files) \ 15 src/com/android/unit_tests/os/IAidlTest.aidl 16 17LOCAL_PACKAGE_NAME := AndroidTests 18LOCAL_CERTIFICATE := platform 19 20include $(BUILD_PACKAGE) 21 22include $(call all-makefiles-under,$(LOCAL_PATH)) 23