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_SRC_FILES := $(call all-subdir-java-files) |
| 5 | |
| 6 | LOCAL_PACKAGE_NAME := DensityTest |
Anton Hansson | ab6ec61 | 2018-02-23 12:57:51 +0000 | [diff] [blame] | 7 | LOCAL_PRIVATE_PLATFORM_APIS := true |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 8 | |
| 9 | LOCAL_MODULE_TAGS := tests |
| 10 | |
Kenny Root | 867812d | 2010-11-04 11:29:48 -0700 | [diff] [blame] | 11 | LOCAL_AAPT_FLAGS = -c 120dpi,240dpi,160dpi,nodpi |
Dianne Hackborn | 14cee9f | 2010-04-23 17:51:26 -0700 | [diff] [blame] | 12 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 13 | include $(BUILD_PACKAGE) |