Home | History | Annotate | Download | only in telephonytests
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := tests
      5 
      6 LOCAL_SRC_FILES := $(call all-subdir-java-files)
      7 
      8 LOCAL_JAVA_LIBRARIES := \
      9     android.test.runner \
     10     ims-common \
     11     bouncycastle \
     12     android.test.base \
     13     android.test.mock
     14 
     15 LOCAL_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 
     23 LOCAL_PACKAGE_NAME := FrameworksTelephonyTests
     24 LOCAL_PRIVATE_PLATFORM_APIS := true
     25 LOCAL_COMPATIBILITY_SUITE := device-tests
     26 
     27 # b/72575505
     28 LOCAL_ERROR_PRONE_FLAGS := -Xep:JUnit4TestNotRun:WARN
     29 
     30 include $(BUILD_PACKAGE)
     31