| 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. | 
|  | 20 | #   LOCAL_MANIFEST_FILE: Name of the AndroidManifest file for the test. If it's | 
|  | 21 | #       not set, default value `AndroidManifest.xml` will be used. | 
|  | 22 | # Output: | 
|  | 23 | #   autogen_test_config_file: Path to the test config file generated. | 
|  | 24 |  | 
|  | 25 | autogen_test_config_file := $(dir $(LOCAL_BUILT_MODULE))$(LOCAL_MODULE).config | 
|  | 26 | ifeq (true,$(is_native)) | 
|  | 27 | # Auto generating test config file for native test | 
|  | 28 | $(autogen_test_config_file) : $(NATIVE_TEST_CONFIG_TEMPLATE) | 
|  | 29 | @echo "Auto generating test config $(notdir $@)" | 
|  | 30 | $(hide) sed 's&{MODULE}&$(PRIVATE_MODULE)&g' $^ > $@ | 
|  | 31 | my_auto_generate_config := true | 
|  | 32 | else | 
|  | 33 | # Auto generating test config file for instrumentation test | 
|  | 34 | ifeq ($(strip $(LOCAL_MANIFEST_FILE)),) | 
|  | 35 | LOCAL_MANIFEST_FILE := AndroidManifest.xml | 
|  | 36 | endif | 
|  | 37 | ifdef LOCAL_FULL_MANIFEST_FILE | 
|  | 38 | my_android_manifest := $(LOCAL_FULL_MANIFEST_FILE) | 
|  | 39 | else | 
|  | 40 | my_android_manifest := $(LOCAL_PATH)/$(LOCAL_MANIFEST_FILE) | 
|  | 41 | endif | 
|  | 42 | ifneq (,$(wildcard $(my_android_manifest))) | 
|  | 43 | $(autogen_test_config_file) : $(my_android_manifest) $(EMPTY_TEST_CONFIG) $(INSTRUMENTATION_TEST_CONFIG_TEMPLATE) | 
|  | 44 | @echo "Auto generating test config $(notdir $@)" | 
|  | 45 | @rm -f $@ | 
|  | 46 | $(hide) $(AUTOGEN_TEST_CONFIG_SCRIPT) $@ $^ | 
|  | 47 | my_auto_generate_config := true | 
|  | 48 | endif # ifeq (,$(wildcard $(my_android_manifest))) | 
|  | 49 | endif # ifneq (true,$(is_native)) | 
|  | 50 |  | 
|  | 51 | ifeq (true,$(my_auto_generate_config)) | 
|  | 52 | LOCAL_INTERMEDIATE_TARGETS += $(autogen_test_config_file) | 
|  | 53 | $(LOCAL_BUILT_MODULE): $(autogen_test_config_file) | 
|  | 54 | ALL_MODULES.$(my_register_name).auto_test_config := true | 
|  | 55 | else | 
|  | 56 | autogen_test_config_file := | 
|  | 57 | endif | 
|  | 58 |  | 
|  | 59 | my_android_manifest := | 
|  | 60 | my_auto_generate_config := |