1# 2# Copyright (C) 2012 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 19uiautomator.core_src_files := $(call all-java-files-under, core-src) \ 20 $(call all-java-files-under, testrunner-src) 21uiautomator.core_java_libraries := android.test.runner junit 22 23uiautomator_internal_api_file := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/uiautomator_api.txt 24uiautomator_internal_removed_api_file := \ 25 $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/uiautomator_removed_api.txt 26 27############################################### 28include $(CLEAR_VARS) 29LOCAL_SRC_FILES := $(uiautomator.core_src_files) 30LOCAL_MODULE := uiautomator.core 31LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base 32LOCAL_STATIC_JAVA_LIBRARIES := junit 33include $(BUILD_STATIC_JAVA_LIBRARY) 34 35############################################### 36# Generate the stub source files 37include $(CLEAR_VARS) 38LOCAL_SRC_FILES := $(uiautomator.core_src_files) 39LOCAL_JAVA_LIBRARIES := $(uiautomator.core_java_libraries) android.test.base 40LOCAL_MODULE_CLASS := JAVA_LIBRARIES 41LOCAL_DROIDDOC_SOURCE_PATH := $(LOCAL_PATH)/core-src \ 42 $(LOCAL_PATH)/testrunner-src 43LOCAL_DROIDDOC_HTML_DIR := 44 45LOCAL_DROIDDOC_STUB_OUT_DIR := $(TARGET_OUT_COMMON_INTERMEDIATES)/JAVA_LIBRARIES/android_uiautomator_intermediates/src 46 47LOCAL_DROIDDOC_OPTIONS:= \ 48 -stubpackages com.android.uiautomator.core:com.android.uiautomator.testrunner \ 49 -api $(uiautomator_internal_api_file) \ 50 -removedApi $(uiautomator_internal_removed_api_file) 51 52LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR := external/doclava/res/assets/templates-sdk 53LOCAL_UNINSTALLABLE_MODULE := true 54 55LOCAL_MODULE := uiautomator-stubs 56 57include $(BUILD_DROIDDOC) 58uiautomator_stubs_stamp := $(full_target) 59$(uiautomator_internal_api_file) : $(full_target) 60 61############################################### 62# Build the stub source files into a jar. 63include $(CLEAR_VARS) 64LOCAL_MODULE := android_uiautomator 65LOCAL_JAVA_LIBRARIES := $(uiautomator.core_java_libraries) 66LOCAL_SOURCE_FILES_ALL_GENERATED := true 67# Make sure to run droiddoc first to generate the stub source files. 68LOCAL_ADDITIONAL_DEPENDENCIES := $(uiautomator_stubs_stamp) 69include $(BUILD_STATIC_JAVA_LIBRARY) 70 71############################################### 72# API check 73# Please refer to build/core/tasks/apicheck.mk. 74uiautomator_api_dir := frameworks/base/cmds/uiautomator/api 75last_released_sdk_version := $(lastword $(call numerically_sort, \ 76 $(filter-out current, \ 77 $(patsubst $(uiautomator_api_dir)/%.txt,%, $(wildcard $(uiautomator_api_dir)/*.txt)) \ 78 ))) 79 80checkapi_last_error_level_flags := \ 81 -hide 2 -hide 3 -hide 4 -hide 5 -hide 6 -hide 24 -hide 25 \ 82 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 \ 83 -error 16 -error 17 -error 18 84 85# Check that the API we're building hasn't broken the last-released SDK version. 86$(eval $(call check-api, \ 87 uiautomator-checkapi-last, \ 88 $(uiautomator_api_dir)/$(last_released_sdk_version).txt, \ 89 $(uiautomator_internal_api_file), \ 90 $(uiautomator_api_dir)/removed.txt, \ 91 $(uiautomator_internal_removed_api_file), \ 92 $(checkapi_last_error_level_flags), \ 93 cat $(LOCAL_PATH)/apicheck_msg_last.txt, \ 94 uiautomator.core, \ 95 $(uiautomator_stubs_stamp))) 96 97checkapi_current_error_level_flags := \ 98 -error 2 -error 3 -error 4 -error 5 -error 6 \ 99 -error 7 -error 8 -error 9 -error 10 -error 11 -error 12 -error 13 -error 14 -error 15 \ 100 -error 16 -error 17 -error 18 -error 19 -error 20 -error 21 -error 23 -error 24 \ 101 -error 25 102 103# Check that the API we're building hasn't changed from the not-yet-released 104# SDK version. 105$(eval $(call check-api, \ 106 uiautomator-checkapi-current, \ 107 $(uiautomator_api_dir)/current.txt, \ 108 $(uiautomator_internal_api_file), \ 109 $(uiautomator_api_dir)/removed.txt, \ 110 $(uiautomator_internal_removed_api_file), \ 111 $(checkapi_current_error_level_flags), \ 112 cat $(LOCAL_PATH)/apicheck_msg_current.txt, \ 113 uiautomator.core, \ 114 $(uiautomator_stubs_stamp))) 115 116.PHONY: update-uiautomator-api 117update-uiautomator-api: PRIVATE_API_DIR := $(uiautomator_api_dir) 118update-uiautomator-api: PRIVATE_REMOVED_API_FILE := $(uiautomator_internal_removed_api_file) 119update-uiautomator-api: $(uiautomator_internal_api_file) 120 @echo Copying uiautomator current.txt 121 $(hide) cp $< $(PRIVATE_API_DIR)/current.txt 122 @echo Copying uiautomator removed.txt 123 $(hide) cp $(PRIVATE_REMOVED_API_FILE) $(PRIVATE_API_DIR)/removed.txt 124############################################### 125# clean up temp vars 126uiautomator.core_src_files := 127uiautomator.core_java_libraries := 128uiautomator_stubs_stamp := 129uiautomator_internal_api_file := 130uiautomator_api_dir := 131checkapi_last_error_level_flags := 132checkapi_current_error_level_flags := 133