blob: 1b39526e6f5d36752a4c9c955bdc8e3c39c18ccb [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6LOCAL_CERTIFICATE := shared
7
Suchand Ghoshd0d53cd2014-09-15 10:44:02 +05308LOCAL_STATIC_JAVA_LIBRARIES := android-support-test \
9 ims-ext-common
Chiao Cheng94b10b52012-08-17 16:59:12 -070010
11# Include all test java files.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
13
Brian Attwell46390452015-04-01 16:42:33 -070014src_dirs := src \
15 ../../ContactsCommon/TestCommon/src
16
17# Include all test java files.
18LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs))
Chiao Cheng94b10b52012-08-17 16:59:12 -070019
Yorke Lee545a7792015-09-29 15:02:34 -070020LOCAL_STATIC_JAVA_LIBRARIES += \
21 mockito-target
22
Chiao Cheng94b10b52012-08-17 16:59:12 -070023LOCAL_PACKAGE_NAME := DialerTests
24
25LOCAL_INSTRUMENTATION_FOR := Dialer
26
Jay Shrauner16b68492015-08-27 16:24:40 -070027LOCAL_SDK_VERSION := current
28
Chiao Cheng94b10b52012-08-17 16:59:12 -070029include $(BUILD_PACKAGE)