blob: 30c6286c66da350f6be2f348ee89def9e6fb97ce [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
8LOCAL_JAVA_LIBRARIES := android.test.runner
9
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
23include $(BUILD_PACKAGE)