Home | History | Annotate | Download | only in app_base
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 include $(CLEAR_VARS)
      4 
      5 # Don't include this package in any target.
      6 LOCAL_MODULE_TAGS := tests
      7 
      8 LOCAL_STATIC_JAVA_LIBRARIES := \
      9     androidx.test.rules \
     10     cts-wm-util \
     11 
     12 LOCAL_SRC_FILES := \
     13     $(call all-java-files-under, src) \
     14 
     15 LOCAL_MODULE := cts-wm-app-base
     16 
     17 LOCAL_SDK_VERSION := test_current
     18 
     19 include $(BUILD_STATIC_JAVA_LIBRARY)
     20