Paul Duffin | e20f193 | 2016-11-28 15:51:09 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2016 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 | |
Paul Duffin | 09336b5 | 2017-12-06 12:43:28 +0000 | [diff] [blame] | 19 | # For unbundled build we'll use the prebuilt jar from prebuilts/sdk. |
| 20 | ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK))) |
| 21 | |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 22 | ANDROID_TEST_BASE_API_FILE := $(LOCAL_PATH)/api/android-test-base-current.txt |
| 23 | ANDROID_TEST_BASE_REMOVED_API_FILE := $(LOCAL_PATH)/api/android-test-base-removed.txt |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 24 | |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 25 | full_classes_jar := $(call intermediates-dir-for,JAVA_LIBRARIES,android.test.base.stubs,,COMMON)/classes.jar |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 26 | # Archive a copy of the classes.jar in SDK build. |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 27 | $(call dist-for-goals,sdk win_sdk,$(full_classes_jar):android.test.base.stubs.jar) |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 28 | |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 29 | # Check that the android.test.base.stubs library has not changed |
| 30 | # ============================================================== |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 31 | |
| 32 | # Check that the API we're building hasn't changed from the not-yet-released |
| 33 | # SDK version. |
| 34 | $(eval $(call check-api, \ |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 35 | check-android-test-base-api-current, \ |
| 36 | $(ANDROID_TEST_BASE_API_FILE), \ |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 37 | $(INTERNAL_PLATFORM_ANDROID_TEST_BASE_API_FILE), \ |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 38 | $(ANDROID_TEST_BASE_REMOVED_API_FILE), \ |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 39 | $(INTERNAL_PLATFORM_ANDROID_TEST_BASE_REMOVED_API_FILE), \ |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 40 | -error 2 -error 3 -error 4 -error 5 -error 6 \ |
| 41 | -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 \ |
| 42 | -error 16 -error 17 -error 18 -error 19 -error 20 -error 21 -error 23 -error 24 \ |
| 43 | -error 25 -error 26 -error 27, \ |
Paul Duffin | 2141827 | 2017-11-16 15:47:05 +0000 | [diff] [blame] | 44 | cat $(LOCAL_PATH)/api/apicheck_msg_android_test_base.txt, \ |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 45 | check-android-test-base-api, \ |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 46 | $(OUT_DOCS)/android-test-base-api-stubs-gen-docs-stubs.srcjar \ |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 47 | )) |
| 48 | |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 49 | .PHONY: check-android-test-base-api |
| 50 | checkapi: check-android-test-base-api |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 51 | |
Paul Duffin | e95a895 | 2017-11-16 15:53:09 +0000 | [diff] [blame] | 52 | .PHONY: update-android-test-base-api |
| 53 | update-api: update-android-test-base-api |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 54 | |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 55 | update-android-test-base-api: $(INTERNAL_PLATFORM_ANDROID_TEST_BASE_API_FILE) | $(ACP) |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 56 | @echo Copying current.txt |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 57 | $(hide) $(ACP) $(INTERNAL_PLATFORM_ANDROID_TEST_BASE_API_FILE) $(ANDROID_TEST_BASE_API_FILE) |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 58 | @echo Copying removed.txt |
Nan Zhang | 3fece48 | 2018-04-13 14:48:32 -0700 | [diff] [blame] | 59 | $(hide) $(ACP) $(INTERNAL_PLATFORM_ANDROID_TEST_BASE_REMOVED_API_FILE) $(ANDROID_TEST_BASE_REMOVED_API_FILE) |
Paul Duffin | bacad40 | 2017-06-28 11:57:59 +0100 | [diff] [blame] | 60 | |
Paul Duffin | 09336b5 | 2017-12-06 12:43:28 +0000 | [diff] [blame] | 61 | endif # not TARGET_BUILD_APPS not TARGET_BUILD_PDK=true |
| 62 | |
Paul Duffin | 02f42f9 | 2016-12-07 14:21:53 +0000 | [diff] [blame] | 63 | ifeq ($(HOST_OS),linux) |
| 64 | # Build the legacy-performance-test-hostdex library |
| 65 | # ================================================= |
| 66 | # This contains the android.test.PerformanceTestCase class only |
| 67 | include $(CLEAR_VARS) |
| 68 | |
Paul Duffin | df25760 | 2016-11-30 13:29:39 +0000 | [diff] [blame] | 69 | LOCAL_SRC_FILES := src/android/test/PerformanceTestCase.java |
Paul Duffin | 02f42f9 | 2016-12-07 14:21:53 +0000 | [diff] [blame] | 70 | LOCAL_MODULE := legacy-performance-test-hostdex |
| 71 | |
Paul Duffin | f1c5961 | 2017-02-22 11:42:46 +0000 | [diff] [blame] | 72 | include $(BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY) |
Paul Duffin | 02f42f9 | 2016-12-07 14:21:53 +0000 | [diff] [blame] | 73 | endif # HOST_OS == linux |