blob: 07f4f00d9fb0365682ca3b8c1f01ffc12c5fd703 [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
Jay Shrauner16b68492015-08-27 16:24:40 -07008LOCAL_STATIC_JAVA_LIBRARIES := android-support-test
Chiao Cheng94b10b52012-08-17 16:59:12 -07009
10# Include all test java files.
11LOCAL_SRC_FILES := $(call all-java-files-under, src)
12
Brian Attwell46390452015-04-01 16:42:33 -070013src_dirs := src \
14 ../../ContactsCommon/TestCommon/src
15
16# Include all test java files.
17LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs))
Chiao Cheng94b10b52012-08-17 16:59:12 -070018
Yorke Lee545a7792015-09-29 15:02:34 -070019LOCAL_STATIC_JAVA_LIBRARIES += \
20 mockito-target
21
Chiao Cheng94b10b52012-08-17 16:59:12 -070022LOCAL_PACKAGE_NAME := DialerTests
23
24LOCAL_INSTRUMENTATION_FOR := Dialer
25
Jay Shrauner16b68492015-08-27 16:24:40 -070026LOCAL_SDK_VERSION := current
27
Chiao Cheng94b10b52012-08-17 16:59:12 -070028include $(BUILD_PACKAGE)