1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := tests
5
6LOCAL_SRC_FILES := $(call all-subdir-java-files)
7
8LOCAL_JAVA_LIBRARIES := \
9    android.test.runner \
10    ims-common \
11    bouncycastle \
12    android.test.base \
13    android.test.mock
14
15LOCAL_STATIC_JAVA_LIBRARIES := guava \
16                               frameworks-base-testutils \
17                               services.core \
18                               telephony-common \
19                               mockito-target-minus-junit4 \
20                               android-support-test \
21                               platform-test-annotations
22
23LOCAL_PACKAGE_NAME := FrameworksTelephonyTests
24LOCAL_PRIVATE_PLATFORM_APIS := true
25LOCAL_COMPATIBILITY_SUITE := device-tests
26
27# b/72575505
28LOCAL_ERROR_PRONE_FLAGS := -Xep:JUnit4TestNotRun:WARN
29
30include $(BUILD_PACKAGE)
31