Paul Duffin | 3212bdb | 2018-01-30 13:01:30 +0000 | [diff] [blame] | 1 | # |
| 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 | |
| 17 | LOCAL_PATH:= $(call my-dir) |
| 18 | |
| 19 | # For unbundled build we'll use the prebuilt jar from prebuilts/sdk. |
| 20 | ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) |
| 21 | |
| 22 | # Build the android.test.legacy library |
| 23 | # ===================================== |
| 24 | include $(CLEAR_VARS) |
| 25 | |
| 26 | LOCAL_MODULE := android.test.legacy |
| 27 | |
| 28 | LOCAL_SDK_VERSION := current |
| 29 | |
| 30 | LOCAL_JAVA_LIBRARIES := junit |
| 31 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 32 | android.test.base-minus-junit \ |
| 33 | android.test.runner-minus-junit \ |
| 34 | |
| 35 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 36 | |
| 37 | # Archive a copy of the classes.jar in SDK build. |
| 38 | $(call dist-for-goals,sdk win_sdk,$(full_classes_jar):android.test.legacy.jar) |
| 39 | |
| 40 | endif # not TARGET_BUILD_APPS not TARGET_BUILD_PDK=true |