| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 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. | 
| Colin Cross | 1c3d83b | 2018-05-17 12:49:08 -0700 | [diff] [blame] | 20 | #   full_android_manifest: Name of the AndroidManifest file for the test. | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 21 | # Output: | 
|  | 22 | #   autogen_test_config_file: Path to the test config file generated. | 
|  | 23 |  | 
|  | 24 | autogen_test_config_file := $(dir $(LOCAL_BUILT_MODULE))$(LOCAL_MODULE).config | 
|  | 25 | ifeq (true,$(is_native)) | 
| Nelson Li | eec9529 | 2018-04-18 17:51:58 +0000 | [diff] [blame] | 26 | ifeq ($(LOCAL_NATIVE_BENCHMARK),true) | 
|  | 27 | autogen_test_config_template := $(NATIVE_BENCHMARK_TEST_CONFIG_TEMPLATE) | 
|  | 28 | else | 
| yangbill | 976c80a | 2018-06-20 22:37:19 +0800 | [diff] [blame] | 29 | ifeq ($(LOCAL_IS_HOST_MODULE),true) | 
|  | 30 | autogen_test_config_template := $(NATIVE_HOST_TEST_CONFIG_TEMPLATE) | 
|  | 31 | else | 
|  | 32 | autogen_test_config_template := $(NATIVE_TEST_CONFIG_TEMPLATE) | 
|  | 33 | endif | 
| Nelson Li | eec9529 | 2018-04-18 17:51:58 +0000 | [diff] [blame] | 34 | endif | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 35 | # Auto generating test config file for native test | 
| yangbill | 86f441d | 2018-07-13 22:55:36 +0800 | [diff] [blame] | 36 | $(autogen_test_config_file): PRIVATE_MODULE_NAME := $(LOCAL_MODULE) | 
| Nelson Li | eec9529 | 2018-04-18 17:51:58 +0000 | [diff] [blame] | 37 | $(autogen_test_config_file) : $(autogen_test_config_template) | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 38 | @echo "Auto generating test config $(notdir $@)" | 
| yangbill | 86f441d | 2018-07-13 22:55:36 +0800 | [diff] [blame] | 39 | $(hide) sed 's&{MODULE}&$(PRIVATE_MODULE_NAME)&g' $< > $@ | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 40 | my_auto_generate_config := true | 
|  | 41 | else | 
|  | 42 | # Auto generating test config file for instrumentation test | 
| Colin Cross | 1c3d83b | 2018-05-17 12:49:08 -0700 | [diff] [blame] | 43 | ifneq (,$(full_android_manifest)) | 
| Dan Shi | 2b334f5 | 2017-12-22 20:23:22 -0800 | [diff] [blame] | 44 | $(autogen_test_config_file): PRIVATE_AUTOGEN_TEST_CONFIG_SCRIPT := $(AUTOGEN_TEST_CONFIG_SCRIPT) | 
| Colin Cross | 1c3d83b | 2018-05-17 12:49:08 -0700 | [diff] [blame] | 45 | $(autogen_test_config_file): PRIVATE_TEST_CONFIG_ANDROID_MANIFEST := $(full_android_manifest) | 
| Dan Shi | 2b334f5 | 2017-12-22 20:23:22 -0800 | [diff] [blame] | 46 | $(autogen_test_config_file): PRIVATE_EMPTY_TEST_CONFIG := $(EMPTY_TEST_CONFIG) | 
|  | 47 | $(autogen_test_config_file): PRIVATE_TEMPLATE := $(INSTRUMENTATION_TEST_CONFIG_TEMPLATE) | 
| Colin Cross | 1c3d83b | 2018-05-17 12:49:08 -0700 | [diff] [blame] | 48 | $(autogen_test_config_file) : $(full_android_manifest) $(EMPTY_TEST_CONFIG) $(INSTRUMENTATION_TEST_CONFIG_TEMPLATE) $(AUTOGEN_TEST_CONFIG_SCRIPT) | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 49 | @echo "Auto generating test config $(notdir $@)" | 
|  | 50 | @rm -f $@ | 
| Dan Shi | 2b334f5 | 2017-12-22 20:23:22 -0800 | [diff] [blame] | 51 | $(hide) $(PRIVATE_AUTOGEN_TEST_CONFIG_SCRIPT) $@ $(PRIVATE_TEST_CONFIG_ANDROID_MANIFEST) $(PRIVATE_EMPTY_TEST_CONFIG) $(PRIVATE_TEMPLATE) | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 52 | my_auto_generate_config := true | 
| Colin Cross | 1c3d83b | 2018-05-17 12:49:08 -0700 | [diff] [blame] | 53 | endif # ifneq (,$(full_android_manifest)) | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 54 | endif # ifneq (true,$(is_native)) | 
|  | 55 |  | 
|  | 56 | ifeq (true,$(my_auto_generate_config)) | 
|  | 57 | LOCAL_INTERMEDIATE_TARGETS += $(autogen_test_config_file) | 
|  | 58 | $(LOCAL_BUILT_MODULE): $(autogen_test_config_file) | 
|  | 59 | ALL_MODULES.$(my_register_name).auto_test_config := true | 
| yangbill | 86f441d | 2018-07-13 22:55:36 +0800 | [diff] [blame] | 60 | $(my_prefix)$(LOCAL_MODULE_CLASS)_$(LOCAL_MODULE)_autogen := true | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 61 | else | 
|  | 62 | autogen_test_config_file := | 
|  | 63 | endif | 
|  | 64 |  | 
| Dan Shi | efb892d | 2017-12-06 15:57:31 -0800 | [diff] [blame] | 65 | my_auto_generate_config := |