Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
Svetoslav Ganov | e080da9 | 2016-12-21 17:10:35 -0800 | [diff] [blame] | 5 | LOCAL_MODULE_TAGS := tests |
| 6 | |
Makoto Onuki | 3a2c3578 | 2015-06-18 11:21:58 -0700 | [diff] [blame] | 7 | # Note we statically link SettingsState to do some unit tests. It's not accessible otherwise |
| 8 | # because this test is not an instrumentation test. (because the target runs in the system process.) |
| 9 | LOCAL_SRC_FILES := $(call all-subdir-java-files) \ |
Ritesh Reddy | 6b7f0f3 | 2016-02-01 13:47:48 +0000 | [diff] [blame] | 10 | ../src/com/android/providers/settings/SettingsState.java |
Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 11 | |
Svetoslav Ganov | e080da9 | 2016-12-21 17:10:35 -0800 | [diff] [blame] | 12 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-test |
| 13 | |
Svetoslav | 683914b | 2015-01-15 14:22:26 -0800 | [diff] [blame] | 14 | LOCAL_PACKAGE_NAME := SettingsProviderTest |
| 15 | |
| 16 | LOCAL_MODULE_TAGS := tests |
| 17 | |
| 18 | LOCAL_CERTIFICATE := platform |
| 19 | |
Ritesh Reddy | 6b7f0f3 | 2016-02-01 13:47:48 +0000 | [diff] [blame] | 20 | include $(BUILD_PACKAGE) |