Home | History | Annotate | Download | only in core

Lines Matching refs:installable

503   $(if $(call module-class-is-installable,$(LOCAL_MODULE_CLASS)),\
521 # Returns $(true) is module $1 is installable
522 # An installable module is one that will be copied to $PROJECT/libs/<abi>/
525 module-is-installable = $(call module-class-is-installable,$(call module-get-class,$1))
778 # Function : modules-get-all-installable
780 # Returns : List of all the installable modules $1 depends on transitively.
781 # Usage : $(call modules-all-get-installable,<list of module names>)
782 # Rationale: This computes the closure of all installable module dependencies starting from $1
785 modules-get-all-installable = $(strip \
787 $(if $(call module-is-installable,$(__alldep)),$(__alldep))\
1888 $(eval NDK_MODULE_CLASS.$1.INSTALLABLE := $(false)) \
1890 # Same a module-class-register, for installable modules
1892 # An installable module is one that will be copied to $PROJECT/libs/<abi>/
1899 module-class-register-installable = \
1901 $(eval NDK_MODULE_CLASS.$1.INSTALLABLE := $(true))
1907 # Returns $(true) if $1 corresponds to an installable module class
1909 module-class-is-installable = $(if $(NDK_MODULE_CLASS.$1.INSTALLABLE),$(true),$(false))
1925 # a shared library is installable.
1926 $(call module-class-register-installable,SHARED_LIBRARY,lib,$(TARGET_SONAME_EXTENSION))
1930 # an executable is installable.
1931 $(call module-class-register-installable,EXECUTABLE,,)
1935 # it is installable
1936 $(call module-class-register-installable,PREBUILT_SHARED_LIBRARY,,)