blob: 21beca8fd97e947dbb709a9ff81935050c9756db [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
19LOCAL_PACKAGE_NAME := DialerTests
20
21LOCAL_INSTRUMENTATION_FOR := Dialer
22
Jay Shrauner16b68492015-08-27 16:24:40 -070023LOCAL_SDK_VERSION := current
24
Chiao Cheng94b10b52012-08-17 16:59:12 -070025include $(BUILD_PACKAGE)