| Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
| 5 | |
| Simran Basi | 395c554 | 2017-03-15 15:16:58 -0700 | [diff] [blame] | 6 | LOCAL_STATIC_JAVA_LIBRARIES := mockito-target \ |
| Simran Basi | 395c554 | 2017-03-15 15:16:58 -0700 | [diff] [blame] | 7 | compatibility-device-util \ |
| 8 | android-support-test |
| Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 9 | |
| Paul Duffin | 9eae181 | 2017-12-08 00:02:43 +0000 | [diff] [blame^] | 10 | LOCAL_JAVA_LIBRARIES := \ |
| 11 | android.test.runner \ |
| 12 | telephony-common \ |
| 13 | android.test.base \ |
| 14 | android.test.mock \ |
| 15 | |
| Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 16 | |
| 17 | LOCAL_SRC_FILES := $(call all-java-files-under,src) |
| 18 | |
| 19 | LOCAL_PACKAGE_NAME := TelephonyProviderTests |
| Simran Basi | b57634f | 2017-03-15 15:16:58 -0700 | [diff] [blame] | 20 | LOCAL_COMPATIBILITY_SUITE := device-tests |
| Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 21 | LOCAL_CERTIFICATE := platform |
| 22 | |
| 23 | LOCAL_INSTRUMENTATION_FOR := TelephonyProvider |
| 24 | |
| Roman Sorokin | 8b39acf | 2015-12-16 18:42:16 +0100 | [diff] [blame] | 25 | include $(BUILD_PACKAGE) |