blob: 02ea81e9bfe47828642e8e0ea32682c56333c918 [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
Makoto Onuki9d70f532016-09-19 15:43:10 -07007LOCAL_STATIC_JAVA_LIBRARIES := \
Makoto Onuki68c0db22016-09-30 10:28:41 -07008 ContactsProviderTestUtils \
Makoto Onuki9d70f532016-09-19 15:43:10 -07009 android-support-test \
Paul Duffin702ce7a2017-12-08 00:02:43 +000010 mockito-target-minus-junit4
Santos Cordon415f5c02015-02-22 05:11:51 -080011
Paul Duffin702ce7a2017-12-08 00:02:43 +000012LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base android.test.mock
Santos Cordon415f5c02015-02-22 05:11:51 -080013
Jeff Hamilton4f864362009-04-23 02:29:07 -050014# Only compile source java files in this apk.
15LOCAL_SRC_FILES := $(call all-java-files-under, src)
16
Dmitri Plotnikovbee1a6b2009-07-10 16:26:09 -070017LOCAL_PACKAGE_NAME := ContactsProviderTests
Anton Hansson5d39cda2018-02-22 18:07:08 +000018LOCAL_PRIVATE_PLATFORM_APIS := true
Simran Basi875cbe02017-03-15 15:15:44 -070019LOCAL_COMPATIBILITY_SUITE := device-tests
Jeff Hamilton4f864362009-04-23 02:29:07 -050020
Evan Millar28f88572009-07-08 14:58:53 -070021LOCAL_INSTRUMENTATION_FOR := ContactsProvider
Dmitri Plotnikov6bc8c0d2009-05-06 19:07:50 -070022LOCAL_CERTIFICATE := shared
Jeff Hamilton4f864362009-04-23 02:29:07 -050023
Santos Cordon415f5c02015-02-22 05:11:51 -080024LOCAL_PROGUARD_ENABLED := disabled
25
Jeff Hamilton4f864362009-04-23 02:29:07 -050026include $(BUILD_PACKAGE)