Artem Iglikov | 5ed1dab | 2017-05-25 15:56:05 +0100 | [diff] [blame] | 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 | ############################################################ |
| 17 | # FrameworksServicesLib app just for Robolectric test target. # |
| 18 | ############################################################ |
| 19 | LOCAL_PATH := $(call my-dir) |
| 20 | |
| 21 | include $(CLEAR_VARS) |
| 22 | |
| 23 | LOCAL_PACKAGE_NAME := FrameworksServicesLib |
| 24 | LOCAL_MODULE_TAGS := optional |
| 25 | |
| 26 | LOCAL_PRIVILEGED_MODULE := true |
| 27 | |
| 28 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Artem Iglikov | 5ed1dab | 2017-05-25 15:56:05 +0100 | [diff] [blame] | 29 | services.backup \ |
Bernardo Rufino | 58dd6c3 | 2017-11-09 19:30:32 +0000 | [diff] [blame] | 30 | services.core |
Artem Iglikov | 5ed1dab | 2017-05-25 15:56:05 +0100 | [diff] [blame] | 31 | |
| 32 | include $(BUILD_PACKAGE) |
| 33 | |
| 34 | ############################################# |
| 35 | # FrameworksServices Robolectric test target. # |
| 36 | ############################################# |
| 37 | include $(CLEAR_VARS) |
| 38 | |
| 39 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 40 | |
| 41 | # Include the testing libraries (JUnit4 + Robolectric libs). |
| 42 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Bernardo Rufino | 90a8802 | 2017-11-13 17:19:15 +0000 | [diff] [blame] | 43 | platform-robolectric-android-all-stubs \ |
Bernardo Rufino | 58dd6c3 | 2017-11-09 19:30:32 +0000 | [diff] [blame] | 44 | android-support-test \ |
| 45 | mockito-robolectric-prebuilt \ |
| 46 | platform-test-annotations \ |
Bernardo Rufino | 2447687 | 2017-12-21 11:43:16 +0000 | [diff] [blame] | 47 | truth-prebuilt \ |
| 48 | testng |
Artem Iglikov | 5ed1dab | 2017-05-25 15:56:05 +0100 | [diff] [blame] | 49 | |
| 50 | LOCAL_JAVA_LIBRARIES := \ |
| 51 | junit \ |
James Lemieux | 0f5bba0 | 2018-01-04 17:45:28 -0800 | [diff] [blame] | 52 | platform-robolectric-3.6.1-prebuilt |
Artem Iglikov | 5ed1dab | 2017-05-25 15:56:05 +0100 | [diff] [blame] | 53 | |
| 54 | LOCAL_INSTRUMENTATION_FOR := FrameworksServicesLib |
| 55 | LOCAL_MODULE := FrameworksServicesRoboTests |
| 56 | |
| 57 | LOCAL_MODULE_TAGS := optional |
| 58 | |
| 59 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 60 | |
| 61 | ############################################################# |
| 62 | # FrameworksServices runner target to run the previous target. # |
| 63 | ############################################################# |
| 64 | include $(CLEAR_VARS) |
| 65 | |
| 66 | LOCAL_MODULE := RunFrameworksServicesRoboTests |
| 67 | |
| 68 | LOCAL_SDK_VERSION := current |
| 69 | |
| 70 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 71 | FrameworksServicesRoboTests |
| 72 | |
| 73 | LOCAL_TEST_PACKAGE := FrameworksServicesLib |
| 74 | |
Artem Iglikov | bd476ea | 2017-09-01 10:57:26 +0100 | [diff] [blame] | 75 | LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))backup/java |
| 76 | |
James Lemieux | 0f5bba0 | 2018-01-04 17:45:28 -0800 | [diff] [blame] | 77 | include prebuilts/misc/common/robolectric/3.6.1/run_robotests.mk |