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