blob: 35a6b395d2ab8b2a62b5134bc2c48e1536bd7e94 [file] [log] [blame]
Jeff Hamilton4f864362009-04-23 02:29:07 -05001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -07004# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
Jeff Hamilton4f864362009-04-23 02:29:07 -05006
Santos Cordon415f5c02015-02-22 05:11:51 -08007LOCAL_STATIC_JAVA_LIBRARIES := mockito-target
8
9LOCAL_JAVA_LIBRARIES := android.test.runner
10
Jeff Hamilton4f864362009-04-23 02:29:07 -050011# Only compile source java files in this apk.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
13
Dmitri Plotnikovbee1a6b2009-07-10 16:26:09 -070014LOCAL_PACKAGE_NAME := ContactsProviderTests
Jeff Hamilton4f864362009-04-23 02:29:07 -050015
Evan Millar28f88572009-07-08 14:58:53 -070016LOCAL_INSTRUMENTATION_FOR := ContactsProvider
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -070017LOCAL_CERTIFICATE := shared
Jeff Hamilton4f864362009-04-23 02:29:07 -050018
Santos Cordon415f5c02015-02-22 05:11:51 -080019LOCAL_PROGUARD_ENABLED := disabled
20
Jeff Hamilton4f864362009-04-23 02:29:07 -050021include $(BUILD_PACKAGE)