The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
| 5 | |
Dan Egnor | 7393bbf | 2009-09-11 16:40:01 -0700 | [diff] [blame] | 6 | LOCAL_JAVA_LIBRARIES := framework-tests android.test.runner services |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 7 | |
Doug Zongker | 0a2fb21 | 2010-01-21 14:36:17 -0800 | [diff] [blame] | 8 | LOCAL_STATIC_JAVA_LIBRARIES := gsf-client |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | |
| 10 | # Resource unit tests use a private locale |
Daniel Sandler | da06e32 | 2009-09-18 14:06:07 -0400 | [diff] [blame] | 11 | LOCAL_AAPT_FLAGS = -c xx_YY -c cs -c 160dpi -c 32dpi -c 240dpi |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 12 | |
| 13 | LOCAL_SRC_FILES := \ |
Neal Nguyen | 1a44d5d | 2010-01-13 10:42:43 -0800 | [diff] [blame^] | 14 | $(call all-subdir-java-files) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 15 | |
| 16 | LOCAL_PACKAGE_NAME := AndroidTests |
| 17 | LOCAL_CERTIFICATE := platform |
| 18 | |
| 19 | include $(BUILD_PACKAGE) |
| 20 | |
| 21 | include $(call all-makefiles-under,$(LOCAL_PATH)) |