The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | # We only want this apk build for tests. |
| 5 | LOCAL_MODULE_TAGS := tests |
| 6 | |
| 7 | # Include all test java files. |
| 8 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 9 | |
| 10 | LOCAL_PACKAGE_NAME := CalendarProviderTests |
Simran Basi | d8a5aaf | 2017-03-15 15:14:31 -0700 | [diff] [blame^] | 11 | LOCAL_COMPATIBILITY_SUITE := device-tests |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 12 | |
Paul Duffin | b1510a9 | 2017-01-17 14:49:42 +0000 | [diff] [blame] | 13 | LOCAL_STATIC_JAVA_LIBRARIES := calendar-common junit legacy-android-test |
Tony Mak | 5bbd1b0 | 2015-09-11 14:53:52 +0100 | [diff] [blame] | 14 | |
Andy McFadden | 78c7a50 | 2011-07-13 16:27:19 -0700 | [diff] [blame] | 15 | LOCAL_JAVA_LIBRARIES := ext android.test.runner |
The Android Open Source Project | cf013ec | 2009-03-03 19:32:38 -0800 | [diff] [blame] | 16 | |
| 17 | LOCAL_INSTRUMENTATION_FOR := CalendarProvider |
| 18 | |
| 19 | include $(BUILD_PACKAGE) |