blob: 114929ccecfd73b6461d1305c0f05080ddb2e877 [file] [log] [blame]
Artem Iglikov5ed1dab2017-05-25 15:56:05 +01001# 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############################################################
19LOCAL_PATH := $(call my-dir)
20
21include $(CLEAR_VARS)
22
23LOCAL_PACKAGE_NAME := FrameworksServicesLib
24LOCAL_MODULE_TAGS := optional
25
26LOCAL_PRIVILEGED_MODULE := true
27
28LOCAL_STATIC_JAVA_LIBRARIES := \
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010029 services.backup \
Bernardo Rufino58dd6c32017-11-09 19:30:32 +000030 services.core
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010031
32include $(BUILD_PACKAGE)
33
34#############################################
35# FrameworksServices Robolectric test target. #
36#############################################
37include $(CLEAR_VARS)
38
39LOCAL_SRC_FILES := $(call all-java-files-under, src)
40
41# Include the testing libraries (JUnit4 + Robolectric libs).
42LOCAL_STATIC_JAVA_LIBRARIES := \
Bernardo Rufino58dd6c32017-11-09 19:30:32 +000043 android-support-test \
44 mockito-robolectric-prebuilt \
45 platform-test-annotations \
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010046 truth-prebuilt
47
Bernardo Rufinob7e9ac8f2017-11-13 17:26:17 +000048# TODO(b/69254249): Migrate to Robolectric 3.4.2
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010049LOCAL_JAVA_LIBRARIES := \
50 junit \
Maurice Lamd42f99c2017-11-14 13:10:36 -080051 platform-robolectric-3.1.1-prebuilt
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010052
53LOCAL_INSTRUMENTATION_FOR := FrameworksServicesLib
54LOCAL_MODULE := FrameworksServicesRoboTests
55
56LOCAL_MODULE_TAGS := optional
57
58include $(BUILD_STATIC_JAVA_LIBRARY)
59
60#############################################################
61# FrameworksServices runner target to run the previous target. #
62#############################################################
63include $(CLEAR_VARS)
64
65LOCAL_MODULE := RunFrameworksServicesRoboTests
66
67LOCAL_SDK_VERSION := current
68
69LOCAL_STATIC_JAVA_LIBRARIES := \
70 FrameworksServicesRoboTests
71
72LOCAL_TEST_PACKAGE := FrameworksServicesLib
73
Artem Iglikovbd476ea2017-09-01 10:57:26 +010074LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))backup/java
75
Bernardo Rufinob7e9ac8f2017-11-13 17:26:17 +000076# TODO(b/69254249): Migrate to Robolectric 3.4.2
77include prebuilts/misc/common/robolectric/3.1.1/run_robotests.mk