blob: 03cadc06e1200e57b75ca51217f4f83cf943b6e9 [file] [log] [blame]
keunyoungb85b2752013-03-08 12:28:03 -08001# This top-level build file is included by all modules that implement
2# the hardware OpenGL ES emulation for Android.
3#
4# We use it to ensure that all sub-Makefiles are included in the right
5# order for various variable definitions and usage to happen in the correct
6# order.
7#
8
9# The following macros are used to start a new GLES emulation module.
10#
11# This will define LOCAL_MODULE as $1, plus a few other variables
12# needed by the build system (e.g. LOCAL_MODULE_TAGS, LOCAL_MODULE_CLASS...)
13#
14# NOTE: You still need to define LOCAL_PATH before this
15#
16# Usage example:
17#
18# $(call emugl-begin-static-library,<name>)
19# LOCAL_SRC_FILES := ....
20# LOCAL_C_INCLUDES += ....
21# $(call emugl-end-module)
22#
23emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
25
26# Internal list of all declared modules (used for sanity checking)
27_emugl_modules :=
28_emugl_HOST_modules :=
29
30# do not use directly, see functions above instead
31emugl-begin-module = \
32 $(eval include $(CLEAR_VARS)) \
33 $(eval LOCAL_MODULE := $1) \
34 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
35 $(eval LOCAL_IS_HOST_MODULE := $(if $3,true,))\
36 $(eval LOCAL_C_INCLUDES := $(EMUGL_COMMON_INCLUDES)) \
37 $(eval LOCAL_CFLAGS := $(EMUGL_COMMON_CFLAGS)) \
keunyoungb85b2752013-03-08 12:28:03 -080038 $(eval _EMUGL_INCLUDE_TYPE := $(BUILD_$2)) \
39 $(call _emugl-init-module,$1,$2,$3)
40
Yahan Zhoud9069282016-06-17 17:40:14 -070041ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 23 && echo PreMarshmallow),PreMarshmallow)
42 emugl-begin-module += $(eval include external/stlport/libstlport.mk)
43endif
Yahan Zhouda1c76d2016-06-23 13:58:09 -070044ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 21 && echo PreLollipop),PreLollipop)
45 emugl-begin-module += $(eval LOCAL_PRELINK_MODULE := false)
46endif
Yahan Zhou10c76822016-06-20 12:28:34 -070047ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 19 && echo PreKitkat),PreKitkat)
48 emugl-begin-module += $(eval LOCAL_MODULE_TAGS := debug)
49 emugl-begin-module += $(eval LOCAL_SHARED_LIBRARIES += libstlport)
50endif
Yahan Zhoud9069282016-06-17 17:40:14 -070051
keunyoungb85b2752013-03-08 12:28:03 -080052# Used to end a module definition, see function definitions above
53emugl-end-module = \
54 $(eval include $(_EMUGL_INCLUDE_TYPE))\
55 $(eval _EMUGL_INCLUDE_TYPE :=) \
56 $(eval _emugl_$(_emugl_HOST)modules += $(_emugl_MODULE))\
57 $(if $(EMUGL_DEBUG),$(call emugl-dump-module))
58
59# Managing module exports and imports.
60#
61# A module can 'import' another module, by calling emugl-import. This will
62# make the current LOCAL_MODULE inherit various definitions exported from
63# the imported module.
64#
65# Module exports are defined by calling emugl-export. Here is an example:
66#
67# $(call emugl-begin-static-library,foo)
68# LOCAL_SRC_FILES := foo.c
69# $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
70# $(call emugl-export,SHARED_LIBRARIES,libcutils)
71# $(call emugl-end-module)
72#
73# $(call emugl-begin-shared-library,bar)
74# LOCAL_SRC_FILES := bar.cpp
75# $(call emugl-import,foo)
76# $(call emugl-end-module)
77#
78# Here, we define a static library named 'foo' which exports an include
79# path and a shared library requirement, and a shared library 'bar' which
80# imports it.
81#
82# What this means is that:
83#
84# - 'bar' will automatically inherit foo's LOCAL_PATH in its LOCAL_C_INCLUDES
85# - 'bar' will automatically inherit libcutils in its own LOCAL_SHARED_LIBRARIES
86#
87# Note that order of declaration matters. If 'foo' is defined after 'bar' in
88# the example above, nothing will work correctly because dependencies are
89# computed at import time.
90#
91#
92# IMPORTANT: Imports are transitive, i.e. when module A imports B,
93# it automatically imports anything imported by B too.
94
95# This is the list of recognized export types we support for now.
96EMUGL_EXPORT_TYPES := \
97 CFLAGS \
98 LDLIBS \
99 LDFLAGS \
100 C_INCLUDES \
101 SHARED_LIBRARIES \
102 STATIC_LIBRARIES \
103 ADDITIONAL_DEPENDENCIES
104
bohu8b0bfc72017-05-11 02:11:51 -0700105ifeq ($(PLATFORM_VERSION_CODENAME.PPR1),P)
106EMUGL_EXPORT_TYPES += HEADER_LIBRARIES
107endif
108
keunyoungb85b2752013-03-08 12:28:03 -0800109# Initialize a module in our database
110# $1: Module name
111# $2: Module type
112# $3: "HOST" for a host module, empty for a target one.
113_emugl-init-module = \
114 $(eval _emugl_HOST := $(if $3,HOST_,))\
115 $(eval _emugl_MODULE := $(_emugl_HOST)$1)\
116 $(if $(filter $(_emugl_$(_emugl_HOST)modules),$(_emugl_MODULE)),\
117 $(error There is already a $(if $3,host,) module named $1!)\
118 )\
119 $(eval _mod = $(_emugl_MODULE)) \
120 $(eval _emugl.$(_mod).type := $(patsubst HOST_%,%,$2))\
121 $(eval _emugl.$(_mod).imports :=) \
122 $(eval _emugl,$(_mod).moved :=) \
123 $(foreach _type,$(EMUGL_EXPORT_TYPES),\
124 $(eval _emugl.$(_mod).export.$(_type) :=)\
125 )
126
127# Called to indicate that a module exports a given local variable for its
128# users. This also adds this to LOCAL_$1
129# $1: Local variable type (e.g. CFLAGS, LDLIBS, etc...)
130# $2: Value(s) to append to the export
131emugl-export = \
132 $(eval _emugl.$(_emugl_MODULE).export.$1 += $2)\
133 $(eval LOCAL_$1 := $2 $(LOCAL_$1))
134
135emugl-export-outer = \
136 $(eval _emugl.$(_emugl_MODULE).export.$1 += $2)
137
138# Called to indicate that a module imports the exports of another module
139# $1: list of modules to import
140#
141emugl-import = \
142 $(foreach _imod,$1,\
143 $(call _emugl-module-import,$(_emugl_HOST)$(_imod))\
144 )
145
146_emugl-module-import = \
147 $(eval _mod := $(_emugl_MODULE))\
148 $(if $(filter-out $(_emugl_$(_emugl_HOST)modules),$1),\
149 $(info Unknown imported emugles module: $1)\
150 $(if $(_emugl_HOST),\
151 $(eval _names := $(patsubst HOST_%,%,$(_emugl_HOST_modules))),\
152 $(eval _names := $(_emugl_modules))\
153 )\
154 $(info Please one of the following names: $(_names))\
155 $(error Aborting)\
156 )\
157 $(if $(filter-out $(_emugl.$(_mod).imports),$1),\
158 $(eval _emugl.$(_mod).imports += $1)\
159 $(foreach _sub,$(_emugl.$1.imports),\
160 $(call _emugl-module-import,$(_sub))\
161 )\
162 $(foreach _type,$(EMUGL_EXPORT_TYPES),\
163 $(eval LOCAL_$(_type) := $(_emugl.$1.export.$(_type)) $(LOCAL_$(_type)))\
164 )\
165 $(if $(filter EXECUTABLE SHARED_LIBRARY,$(_emugl.$(_emugl_MODULE).type)),\
166 $(if $(filter STATIC_LIBRARY,$(_emugl.$1.type)),\
167 $(eval LOCAL_STATIC_LIBRARIES := $(1:HOST_%=%) $(LOCAL_STATIC_LIBRARIES))\
168 )\
169 $(if $(filter SHARED_LIBRARY,$(_emugl.$1.type)),\
170 $(if $(_emugl.$1.moved),,\
171 $(eval LOCAL_SHARED_LIBRARIES := $(1:HOST_%=%) $(LOCAL_SHARED_LIBRARIES))\
172 )\
173 )\
174 )\
175 )
176
177_emugl-dump-list = \
178 $(foreach _list_item,$(strip $1),$(info . $(_list_item)))
179
180emugl-dump-module = \
181 $(info MODULE=$(_emugl_MODULE))\
182 $(info . HOST=$(_emugl_HOST))\
183 $(info . TYPE=$(_emugl.$(_emugl_MODULE).type))\
184 $(info . IMPORTS=$(_emugl.$(_emugl_MODULE).imports))\
185 $(foreach _type,$(EMUGL_EXPORT_TYPES),\
186 $(if $(filter C_INCLUDES ADDITIONAL_DEPENDENCIES,$(_type)),\
187 $(info . EXPORT.$(_type) :=)\
188 $(call _emugl-dump-list,$(_emugl.$(_emugl_MODULE).export.$(_type)))\
189 $(info . LOCAL_$(_type) :=)\
190 $(call _emugl-dump-list,$(LOCAL_$(_type)))\
191 ,\
192 $(info . EXPORT.$(_type) := $(strip $(_emugl.$(_emugl_MODULE).export.$(_type))))\
193 $(info . LOCAL_$(_type) := $(strip $(LOCAL_$(_type))))\
194 )\
195 )\
196 $(info . LOCAL_SRC_FILES := $(LOCAL_SRC_FILES))\
197
198# This function can be called to generate the wrapper source files.
199# LOCAL_MODULE and LOCAL_MODULE_CLASS must be defined or the build will abort.
200# Source files will be stored in the local intermediates directory that will
201# be automatically added to your LOCAL_C_INCLUDES.
202# Usage:
203# $(call emugl-gen-wrapper,<input-dir>,<basename>)
204#
205emugl-gen-wrapper = \
206 $(eval _emugl_out := $(call local-intermediates-dir)) \
207 $(call emugl-gen-wrapper-generic,$(_emugl_out),$1,$2) \
208 $(call emugl-export,C_INCLUDES,$(_emugl_out))
209
210# DO NOT CALL DIRECTLY, USE emugl-gen-wrapper instead.
211#
212# The following function can be called to generate GL library wrapper
213# Usage is:
214#
215# $(call emugl-gen-wrapper-generic,<dst-dir>,<src-dir>,<basename>)
216#
217# <dst-dir> is the destination directory where the generated sources are stored
218# <src-dir> is the source directory where to find <basename>.attrib, etc..
219# <basename> is the emugen basename (see host/tools/emugen/README)
220#
221emugl-gen-wrapper-generic = $(eval $(emugl-gen-wrapper-generic-ev))
222
223define emugl-gen-wrapper-generic-ev
224_emugl_wrap := $$1/$$3
225_emugl_src := $$2/$$3
226GEN := $$(_emugl_wrap)_wrapper_entry.cpp \
227 $$(_emugl_wrap)_wrapper_context.cpp \
228 $$(_emugl_wrap)_wrapper_context.h \
229 $$(_emugl_wrap)_wrapper_proc.h
230
231$$(GEN): PRIVATE_PATH := $$(LOCAL_PATH)
232$$(GEN): PRIVATE_CUSTOM_TOOL := $$(EMUGL_EMUGEN) -W $$1 -i $$2 $$3
233$$(GEN): $$(EMUGL_EMUGEN) $$(_emugl_src).attrib $$(_emugl_src).in $$(_emugl_src).types
234 $$(transform-generated-source)
235
236$$(call emugl-export,ADDITIONAL_DEPENDENCIES,$$(GEN))
237LOCAL_GENERATED_SOURCES += $$(GEN)
238LOCAL_C_INCLUDES += $$1
239
240#ifneq ($$(HOST_OS),windows)
241$$(call emugl-export,LDFLAGS,-ldl)
242#endif
243
244endef
245
246# Call this function when your shared library must be placed in a non-standard
247# library path (i.e. not under /system/lib
248# $1: library sub-path,relative to /system/lib
249# For example: $(call emugl-set-shared-library-subpath,egl)
Yahan Zhoub67ae0d2016-06-22 15:26:08 -0700250
251ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 21 && echo PreLollipop),PreLollipop)
252 emugl-set-shared-library-subpath = \
253 $(eval LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/$1)\
254 $(eval LOCAL_UNSTRIPPED_PATH := $(TARGET_OUT_SHARED_LIBRARIES_UNSTRIPPED)/$1)\
255 $(eval _emugl.$(LOCAL_MODULE).moved := true)\
256 $(call emugl-export-outer,ADDITIONAL_DEPENDENCIES,$(LOCAL_MODULE_PATH)/$(LOCAL_MODULE)$(TARGET_SHLIB_SUFFIX))
257else
258 emugl-set-shared-library-subpath = \
259 $(eval LOCAL_MODULE_RELATIVE_PATH := $1)\
260 $(eval _emugl.$(LOCAL_MODULE).moved := true)
261endif
262