blob: 9f3a2a6b29444bf2e6d4a960451595c19c02f653 [file] [log] [blame]
Dan Shiefb892d2017-12-06 15:57:31 -08001#
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
25autogen_test_config_file := $(dir $(LOCAL_BUILT_MODULE))$(LOCAL_MODULE).config
26ifeq (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' $^ > $@
31my_auto_generate_config := true
32else
33# Auto generating test config file for instrumentation test
34ifeq ($(strip $(LOCAL_MANIFEST_FILE)),)
35 LOCAL_MANIFEST_FILE := AndroidManifest.xml
36endif
37ifdef LOCAL_FULL_MANIFEST_FILE
38 my_android_manifest := $(LOCAL_FULL_MANIFEST_FILE)
39else
40 my_android_manifest := $(LOCAL_PATH)/$(LOCAL_MANIFEST_FILE)
41endif
42ifneq (,$(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) $@ $^
47my_auto_generate_config := true
48endif # ifeq (,$(wildcard $(my_android_manifest)))
49endif # ifneq (true,$(is_native))
50
51ifeq (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
55else
56 autogen_test_config_file :=
57endif
58
59my_android_manifest :=
60my_auto_generate_config :=