1# 2# Copyright (C) 2017 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# This build rule allows TradeFed test config file to be created based on 18# following inputs: 19# is_native: If the test is a native test. 20# full_android_manifest: Name of the AndroidManifest file for the test. 21# Output: 22# autogen_test_config_file: Path to the test config file generated. 23 24autogen_test_config_file := $(dir $(LOCAL_BUILT_MODULE))$(LOCAL_MODULE).config 25# TODO: (b/167308193) Switch to /data/local/tests/unrestricted as the default install base. 26autogen_test_install_base := /data/local/tmp 27# Automatically setup test root for native test. 28ifeq (true,$(is_native)) 29 ifeq (true,$(LOCAL_VENDOR_MODULE)) 30 autogen_test_install_base = /data/local/tests/vendor 31 endif 32 ifeq (true,$(LOCAL_USE_VNDK)) 33 autogen_test_install_base = /data/local/tests/vendor 34 endif 35endif 36ifeq (true,$(is_native)) 37ifeq ($(LOCAL_NATIVE_BENCHMARK),true) 38autogen_test_config_template := $(NATIVE_BENCHMARK_TEST_CONFIG_TEMPLATE) 39else 40 ifeq ($(LOCAL_IS_HOST_MODULE),true) 41 autogen_test_config_template := $(NATIVE_HOST_TEST_CONFIG_TEMPLATE) 42 else 43 autogen_test_config_template := $(NATIVE_TEST_CONFIG_TEMPLATE) 44 endif 45endif 46# Auto generating test config file for native test 47$(autogen_test_config_file): PRIVATE_TEST_INSTALL_BASE := $(autogen_test_install_base) 48$(autogen_test_config_file): PRIVATE_MODULE_NAME := $(LOCAL_MODULE) 49$(autogen_test_config_file) : $(autogen_test_config_template) 50 @echo "Auto generating test config $(notdir $@)" 51 $(hide) sed 's&{MODULE}&$(PRIVATE_MODULE_NAME)&g;s&{TEST_INSTALL_BASE}&$(PRIVATE_TEST_INSTALL_BASE)&g;s&{EXTRA_CONFIGS}&&g' $< > $@ 52my_auto_generate_config := true 53else 54# Auto generating test config file for instrumentation test 55ifneq (,$(full_android_manifest)) 56$(autogen_test_config_file): PRIVATE_AUTOGEN_TEST_CONFIG_SCRIPT := $(AUTOGEN_TEST_CONFIG_SCRIPT) 57$(autogen_test_config_file): PRIVATE_TEST_CONFIG_ANDROID_MANIFEST := $(full_android_manifest) 58$(autogen_test_config_file): PRIVATE_EMPTY_TEST_CONFIG := $(EMPTY_TEST_CONFIG) 59$(autogen_test_config_file): PRIVATE_TEMPLATE := $(INSTRUMENTATION_TEST_CONFIG_TEMPLATE) 60$(autogen_test_config_file) : $(full_android_manifest) $(EMPTY_TEST_CONFIG) $(INSTRUMENTATION_TEST_CONFIG_TEMPLATE) $(AUTOGEN_TEST_CONFIG_SCRIPT) 61 @echo "Auto generating test config $(notdir $@)" 62 @rm -f $@ 63 $(hide) $(PRIVATE_AUTOGEN_TEST_CONFIG_SCRIPT) $@ $(PRIVATE_TEST_CONFIG_ANDROID_MANIFEST) $(PRIVATE_EMPTY_TEST_CONFIG) $(PRIVATE_TEMPLATE) 64my_auto_generate_config := true 65endif # ifneq (,$(full_android_manifest)) 66endif # ifneq (true,$(is_native)) 67 68ifeq (true,$(my_auto_generate_config)) 69 LOCAL_INTERMEDIATE_TARGETS += $(autogen_test_config_file) 70 $(LOCAL_BUILT_MODULE): $(autogen_test_config_file) 71 ALL_MODULES.$(my_register_name).auto_test_config := true 72 $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_autogen := true 73else 74 autogen_test_config_file := 75endif 76 77my_auto_generate_config := 78