blob: c01c124659406f14412484513e47755dc6a58bdd [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
Robert Berry39194c02018-01-11 13:50:56 +000016##############################################################
17# FrameworksServicesLib app just for Robolectric test target #
18##############################################################
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010019LOCAL_PATH := $(call my-dir)
20
21include $(CLEAR_VARS)
22
23LOCAL_PACKAGE_NAME := FrameworksServicesLib
Anton Hanssond137c872018-02-23 12:57:51 +000024LOCAL_PRIVATE_PLATFORM_APIS := true
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010025LOCAL_MODULE_TAGS := optional
26
27LOCAL_PRIVILEGED_MODULE := true
28
29LOCAL_STATIC_JAVA_LIBRARIES := \
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010030 services.backup \
Dan Shidc2b6312018-11-12 17:17:17 -080031 services.core \
32 services.net
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010033
34include $(BUILD_PACKAGE)
35
Robert Berry39194c02018-01-11 13:50:56 +000036##############################################
37# FrameworksServices Robolectric test target #
38##############################################
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010039include $(CLEAR_VARS)
40
Robert Berry39194c02018-01-11 13:50:56 +000041# Dependency platform-robolectric-android-all-stubs below contains a bunch of Android classes as
42# stubs that throw RuntimeExceptions when we use them. The goal is to include hidden APIs that
43# weren't included in Robolectric's Android jar files. However, we are testing the framework itself
44# here, so if we write stuff that is being used in the tests and exist in
45# platform-robolectric-android-all-stubs, the class loader is going to pick up the latter, and thus
46# we are going to test what we don't want. To solve this:
47#
48# 1. If the class being used should be visible to bundled apps:
49# => Bypass the stubs target by including them in LOCAL_SRC_FILES and LOCAL_AIDL_INCLUDES
50# (if aidl).
51#
52# 2. If it's not visible:
53# => Remove the class from the stubs jar (common/robolectric/android-all/android-all-stubs.jar)
54# and add the class path to
55# common/robolectric/android-all/android-all-stubs_removed_classes.txt.
56#
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010057
Robert Berry39194c02018-01-11 13:50:56 +000058INTERNAL_BACKUP := ../../core/java/com/android/internal/backup
59
60LOCAL_SRC_FILES := \
61 $(call all-java-files-under, src) \
62 $(call all-Iaidl-files-under, $(INTERNAL_BACKUP)) \
Michal Karpinskib5e09312018-02-19 13:55:23 +000063 $(call all-java-files-under, ../../core/java/android/app/backup) \
64 $(call all-Iaidl-files-under, ../../core/java/android/app/backup) \
Robert Berry39194c02018-01-11 13:50:56 +000065 ../../core/java/android/content/pm/PackageInfo.java \
Annie Meng7d3033b2018-03-08 20:38:43 +000066 ../../core/java/android/app/IBackupAgent.aidl \
67 ../../core/java/android/util/KeyValueSettingObserver.java
Robert Berry39194c02018-01-11 13:50:56 +000068
69LOCAL_AIDL_INCLUDES := \
70 $(call all-Iaidl-files-under, $(INTERNAL_BACKUP)) \
Michal Karpinskib5e09312018-02-19 13:55:23 +000071 $(call all-Iaidl-files-under, ../../core/java/android/app/backup) \
Robert Berry39194c02018-01-11 13:50:56 +000072 ../../core/java/android/app/IBackupAgent.aidl
73
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010074LOCAL_STATIC_JAVA_LIBRARIES := \
Bernardo Rufino90a88022017-11-13 17:19:15 +000075 platform-robolectric-android-all-stubs \
Bernardo Rufino58dd6c32017-11-09 19:30:32 +000076 android-support-test \
77 mockito-robolectric-prebuilt \
78 platform-test-annotations \
Bernardo Rufino24476872017-12-21 11:43:16 +000079 truth-prebuilt \
80 testng
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010081
82LOCAL_JAVA_LIBRARIES := \
83 junit \
Tobias Thiereree7b4122018-10-12 17:43:10 +010084 platform-robolectric-3.6.2-prebuilt
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010085
86LOCAL_INSTRUMENTATION_FOR := FrameworksServicesLib
87LOCAL_MODULE := FrameworksServicesRoboTests
88
89LOCAL_MODULE_TAGS := optional
90
91include $(BUILD_STATIC_JAVA_LIBRARY)
92
Robert Berry39194c02018-01-11 13:50:56 +000093###############################################################
94# FrameworksServices runner target to run the previous target #
95###############################################################
Artem Iglikov5ed1dab2017-05-25 15:56:05 +010096include $(CLEAR_VARS)
97
98LOCAL_MODULE := RunFrameworksServicesRoboTests
99
100LOCAL_SDK_VERSION := current
101
102LOCAL_STATIC_JAVA_LIBRARIES := \
103 FrameworksServicesRoboTests
104
105LOCAL_TEST_PACKAGE := FrameworksServicesLib
106
Artem Iglikovbd476ea2017-09-01 10:57:26 +0100107LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))backup/java
108
Tobias Thiereree7b4122018-10-12 17:43:10 +0100109include prebuilts/misc/common/robolectric/3.6.2/run_robotests.mk