multi_prebuilt.mk revision e1a8e3aef3834e8b451f2f8ae465c47ed58aba00
1#
2# Copyright (C) 2008 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# Save these before they get cleared by CLEAR_VARS.
18prebuilt_static_libs := $(filter %.a,$(LOCAL_PREBUILT_LIBS))
19prebuilt_shared_libs := $(filter-out %.a,$(LOCAL_PREBUILT_LIBS))
20prebuilt_executables := $(LOCAL_PREBUILT_EXECUTABLES)
21prebuilt_java_libraries := $(LOCAL_PREBUILT_JAVA_LIBRARIES)
22prebuilt_static_java_libraries := $(LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES)
23prebuilt_is_host := $(LOCAL_IS_HOST_MODULE)
24prebuilt_module_tags := $(LOCAL_MODULE_TAGS)
25prebuilt_strip_module := $(LOCAL_STRIP_MODULE)
26
27
28ifndef multi_prebuilt_once
29multi_prebuilt_once := true
30
31# $(1): file list
32# $(2): IS_HOST_MODULE
33# $(3): MODULE_CLASS
34# $(4): MODULE_TAGS
35# $(5): OVERRIDE_BUILT_MODULE_PATH
36# $(6): UNINSTALLABLE_MODULE
37# $(7): BUILT_MODULE_STEM
38# $(8): LOCAL_STRIP_MODULE
39#
40# Elements in the file list may be bare filenames,
41# or of the form "<modulename>:<filename>".
42# If the module name is not specified, the module
43# name will be the filename with the suffix removed.
44#
45define auto-prebuilt-boilerplate
46$(if $(filter %: :%,$(1)), \
47  $(error $(LOCAL_PATH): Leading or trailing colons in "$(1)")) \
48$(foreach t,$(1), \
49  $(eval include $(CLEAR_VARS)) \
50  $(eval LOCAL_IS_HOST_MODULE := $(2)) \
51  $(eval LOCAL_MODULE_CLASS := $(3)) \
52  $(eval LOCAL_MODULE_TAGS := $(4)) \
53  $(eval OVERRIDE_BUILT_MODULE_PATH := $(5)) \
54  $(eval LOCAL_UNINSTALLABLE_MODULE := $(6)) \
55  $(eval tw := $(subst :, ,$(strip $(t)))) \
56  $(if $(word 3,$(tw)),$(error $(LOCAL_PATH): Bad prebuilt filename '$(t)')) \
57  $(if $(word 2,$(tw)), \
58    $(eval LOCAL_MODULE := $(word 1,$(tw))) \
59    $(eval LOCAL_SRC_FILES := $(word 2,$(tw))) \
60   , \
61    $(eval LOCAL_MODULE := $(basename $(notdir $(t)))) \
62    $(eval LOCAL_SRC_FILES := $(t)) \
63   ) \
64  $(if $(7), \
65    $(eval LOCAL_BUILT_MODULE_STEM := $(7)) \
66   , \
67    $(eval LOCAL_BUILT_MODULE_STEM := $(notdir $(LOCAL_SRC_FILES))) \
68   ) \
69  $(eval LOCAL_MODULE_SUFFIX := $(suffix $(LOCAL_SRC_FILES))) \
70  $(if $(filter user,$(TARGET_BUILD_VARIANT)), \
71    $(eval LOCAL_STRIP_MODULE := $(8))) \
72  $(eval include $(BUILD_PREBUILT)) \
73 )
74endef
75
76endif # multi_prebuilt_once
77
78
79$(call auto-prebuilt-boilerplate, \
80    $(prebuilt_static_libs), \
81    $(prebuilt_is_host), \
82    STATIC_LIBRARIES, \
83    $(prebuilt_module_tags), \
84    , \
85    true)
86
87$(call auto-prebuilt-boilerplate, \
88    $(prebuilt_shared_libs), \
89    $(prebuilt_is_host), \
90    SHARED_LIBRARIES, \
91    $(prebuilt_module_tags), \
92    $($(if $(prebuilt_is_host),HOST,TARGET)_OUT_INTERMEDIATE_LIBRARIES), \
93    , \
94    , \
95    $(prebuilt_strip_module))
96
97$(call auto-prebuilt-boilerplate, \
98    $(prebuilt_executables), \
99    $(prebuilt_is_host), \
100    EXECUTABLES, \
101    $(prebuilt_module_tags))
102
103$(call auto-prebuilt-boilerplate, \
104    $(prebuilt_java_libraries), \
105    $(prebuilt_is_host), \
106    JAVA_LIBRARIES, \
107    $(prebuilt_module_tags), \
108    , \
109    , \
110    javalib.jar)
111
112$(call auto-prebuilt-boilerplate, \
113    $(prebuilt_static_java_libraries), \
114    $(prebuilt_is_host), \
115    JAVA_LIBRARIES, \
116    $(prebuilt_module_tags), \
117    , \
118    true, \
119    javalib.jar)
120
121prebuilt_static_libs :=
122prebuilt_shared_libs :=
123prebuilt_executables :=
124prebuilt_java_libraries :=
125prebuilt_static_java_libraries :=
126prebuilt_is_host :=
127prebuilt_module_tags :=
128