blob: 284008c5be71017294b315756349a93ce8b94cca [file] [log] [blame]
Paul Duffin898e7de2018-01-30 13:01:30 +00001#
2# Copyright (C) 2018 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH:= $(call my-dir)
18
19# For unbundled build we'll use the prebuilt jar from prebuilts/sdk.
20ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)))
21
22# Build the android.test.legacy library
23# =====================================
Paul Duffin4cdec672018-02-14 10:36:16 +000024# Built against the SDK so that it can be statically included in APKs
25# without breaking link type checks.
26#
Paul Duffin898e7de2018-01-30 13:01:30 +000027include $(CLEAR_VARS)
28
29LOCAL_MODULE := android.test.legacy
Bob Badour051ef782021-02-12 17:07:05 -080030LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 SPDX-license-identifier-MIT SPDX-license-identifier-Unicode-DFS
31LOCAL_LICENSE_CONDITIONS := notice
32LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE
Paul Duffin898e7de2018-01-30 13:01:30 +000033
34LOCAL_SDK_VERSION := current
35
Paul Duffin4cdec672018-02-14 10:36:16 +000036LOCAL_JAVA_LIBRARIES := junit android.test.mock.stubs
Paul Duffin79d7ba22019-02-25 19:18:37 +000037LOCAL_STATIC_JAVA_LIBRARIES := \
38 android.test.base-minus-junit \
39 android.test.runner-minus-junit \
Paul Duffin898e7de2018-01-30 13:01:30 +000040
41include $(BUILD_STATIC_JAVA_LIBRARY)
42
43# Archive a copy of the classes.jar in SDK build.
Anton Hanssondd8ef672022-01-04 08:53:19 +000044$(call dist-for-goals,sdk,$(full_classes_jar):android.test.legacy.jar)
Paul Duffin898e7de2018-01-30 13:01:30 +000045
46endif # not TARGET_BUILD_APPS not TARGET_BUILD_PDK=true