Home | History | Annotate | Download | only in core

Lines Matching defs:class

220 # where <prefix> and <suffix> depend on the module class.
284 $(if $(call module-class-is-installable,$(LOCAL_MODULE_CLASS)),\
292 # Retrieve the class of module $1
293 module-get-class = $(__gdk_modules.$1.MODULE_CLASS)
302 module-is-installable = $(call module-class-is-installable,$(call module-get-class,$1))
308 module-is-prebuilt = $(call module-class-is-prebuilt,$(call module-get-class,$1))
1131 # Register a new module class
1132 # $1: class name (e.g. STATIC_LIBRARY)
1136 module-class-register = \
1142 # Same a module-class-register, for installable modules
1147 # $1: class name
1151 module-class-register-installable = \
1152 $(call module-class-register,$1,$2,$3) \
1155 module-class-set-prebuilt = \
1160 module-class-check = $(call set_is_member,$(GDK_MODULE_CLASSES),$1)
1162 # Returns $(true) if $1 corresponds to an installable module class
1164 module-class-is-installable = $(if $(GDK_MODULE_CLASS.$1.INSTALLABLE),$(true),$(false))
1166 # Returns $(true) if $1 corresponds to an installable module class
1168 module-class-is-prebuilt = $(if $(GDK_MODULE_CLASS.$1.PREBUILT),$(true),$(false))
1176 #$(call module-class-register,STATIC_LIBRARY,lib,.a)
1181 #$(call module-class-register-installable,SHARED_LIBRARY,lib,.so)
1185 $(call module-class-register-installable,BITCODE,lib,.bc)
1190 #$(call module-class-register-installable,EXECUTABLE,,)
1195 #$(call module-class-register-installable,PREBUILT_SHARED_LIBRARY,,)
1196 class-set-prebuilt,PREBUILT_SHARED_LIBRARY)
1200 #$(call module-class-register,PREBUILT_STATIC_LIBRARY,,)
1201 #$(call module-class-set-prebuilt,PREBUILT_STATIC_LIBRARY)