Home | History | Annotate | Download | only in robotests
      1 # Copyright (C) 2016 The Android Open Source Project
      2 #
      3 # Licensed under the Apache License, Version 2.0 (the "License");
      4 # you may not use this file except in compliance with the License.
      5 # You may obtain a copy of the License at
      6 #
      7 #      http://www.apache.org/licenses/LICENSE-2.0
      8 #
      9 # Unless required by applicable law or agreed to in writing, software
     10 # distributed under the License is distributed on an "AS IS" BASIS,
     11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 # See the License for the specific language governing permissions and
     13 # limitations under the License.
     14 
     15 ############################################################
     16 # SettingsLib Shell app just for Robolectric test target.  #
     17 ############################################################
     18 LOCAL_PATH := $(call my-dir)
     19 include $(CLEAR_VARS)
     20 
     21 LOCAL_PACKAGE_NAME := SettingsLibShell
     22 LOCAL_PRIVATE_PLATFORM_APIS := true
     23 LOCAL_MODULE_TAGS := optional
     24 
     25 LOCAL_PRIVILEGED_MODULE := true
     26 
     27 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
     28 
     29 LOCAL_USE_AAPT2 := true
     30 
     31 include frameworks/base/packages/SettingsLib/common.mk
     32 
     33 include $(BUILD_PACKAGE)
     34 
     35 #############################################
     36 # SettingsLib Robolectric test target.      #
     37 #############################################
     38 include $(CLEAR_VARS)
     39 
     40 LOCAL_MODULE := SettingsLibRoboTests
     41 
     42 LOCAL_SRC_FILES := $(call all-java-files-under, src)
     43 
     44 LOCAL_JAVA_RESOURCE_DIRS := config
     45 
     46 LOCAL_JAVA_LIBRARIES := \
     47     robolectric_android-all-stub \
     48     Robolectric_all-target \
     49     mockito-robolectric-prebuilt \
     50     truth-prebuilt
     51 
     52 LOCAL_INSTRUMENTATION_FOR := SettingsLibShell
     53 
     54 LOCAL_MODULE_TAGS := optional
     55 
     56 include $(BUILD_STATIC_JAVA_LIBRARY)
     57 
     58 #############################################################
     59 # SettingsLib runner target to run the previous target.     #
     60 #############################################################
     61 include $(CLEAR_VARS)
     62 
     63 LOCAL_MODULE := RunSettingsLibRoboTests
     64 
     65 LOCAL_JAVA_LIBRARIES := \
     66     SettingsLibRoboTests \
     67     robolectric_android-all-stub \
     68     Robolectric_all-target \
     69     mockito-robolectric-prebuilt \
     70     truth-prebuilt
     71 
     72 LOCAL_TEST_PACKAGE := SettingsLibShell
     73 
     74 LOCAL_ROBOTEST_TIMEOUT := 36000
     75 
     76 include external/robolectric-shadows/run_robotests.mk