blob: fe73983ba64ca0be6388678d39e25f32549739f5 [file] [log] [blame]
The Android Open Source Projectcf013ec2009-03-03 19:32:38 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7# Include all test java files.
8LOCAL_SRC_FILES := $(call all-java-files-under, src)
9
10LOCAL_PACKAGE_NAME := CalendarProviderTests
11
12LOCAL_JAVA_LIBRARIES := ext android.test.runner
13
14LOCAL_INSTRUMENTATION_FOR := CalendarProvider
15
16include $(BUILD_PACKAGE)