• Home
  • Raw
  • Download

Lines Matching refs:module

627 module-add = \
630 $(call __ndk_info,Trying to define local module '$1' in $(LOCAL_MAKEFILE).)\
631 $(call __ndk_info,But this module was already defined by $(__ndk_modules.$1.MAKEFILE).)\
638 $(if $(call module-class-is-installable,$(LOCAL_MODULE_CLASS)),\
644 $(call module-handle-c++-features,$1)
648 module-get-class = $(__ndk_modules.$1.MODULE_CLASS)
651 module-get-built = $(__ndk_modules.$1.BUILT_MODULE)
657 module-is-installable = $(call module-class-is-installable,$(call module-get-class,$1))
663 module-is-prebuilt = $(call module-class-is-prebuilt,$(call module-get-class,$1))
673 module-get-export = $(__ndk_modules.$1.EXPORT_$2)
684 module-get-listed-export = $(strip \
686 $(call module-get-export,$(__listed_module),$2)\
696 module-restore-locals = \
731 module-add-static-depends = \
732 $(call module-add-depends-any,$1,$2,depends) \
743 module-add-shared-depends = \
744 $(call module-add-depends-any,$1,$2,depends) \
749 module-add-depends-any = \
756 $(call module-compute-depends,$(__module))\
759 module-compute-depends = \
760 $(call module-add-static-depends,$1,$(__ndk_modules.$1.STATIC_LIBRARIES))\
761 $(call module-add-static-depends,$1,$(__ndk_modules.$1.WHOLE_STATIC_LIBRARIES))\
762 $(call module-add-shared-depends,$1,$(__ndk_modules.$1.SHARED_LIBRARIES))\
764 module-get-installed = $(__ndk_modules.$1.INSTALLED)
773 module-get-all-dependencies = $(strip \
805 module-get-depends = $(strip $(call modules-get-closure,$1,$2))
817 $(foreach __alldep,$(call module-get-depends,$1,depends),\
818 $(if $(call module-is-installable,$(__alldep)),$(__alldep))\
823 module-get-cpp-extension = $(strip \
831 module-get-c++-sources = \
834 $(filter %$(call module-get-cpp-extension,$1),$(__files))
838 module-has-c++-sources = $(strip $(call module-get-c++-sources,$1))
847 $(if $(call module-has-c++-sources,$(__module)),\
849 $(call module-add-c++-deps,$(__module),$1,$2),\
856 module-get-c++-flags = $(strip \
865 module-filter-out-compiler-flags = \
873 module-flags-have-rtti = $(strip \
875 $(lastword $(filter -frtti -fno-rtti,$(call module-get-c++-flags,$1)))\
881 module-flags-have-exceptions = $(strip \
883 $(lastword $(filter -fexceptions -fno-execeptions,$(call module-get-c++-flags,$1)))\
896 module-handle-c++-features = \
905 $(if $(call module-flags-have-rtti,$1),rtti) \
906 $(if $(call module-flags-have-exceptions,$1),exceptions) \
909 $(call module-filter-out-compiler-flags,$1,-frtti -fno-rtti -fexceptions -fno-exceptions)\
917 module-has-c++-features = $(strip \
918 $(eval __cxxdeps := $(call module-get-all-dependencies,$1))\
929 module-add-c++-deps = \
1012 handle-module-filename = $(eval $(call ev-handle-module-filename,$1,$2))
1020 define ev-check-module-filename
1042 define ev-handle-module-filename
1047 $$(eval $$(call ev-check-module-filename))
1051 handle-prebuilt-module-filename = $(eval $(call ev-handle-prebuilt-module-filename,$1))
1059 define ev-handle-prebuilt-module-filename
1067 $$(eval $$(call ev-check-module-filename))
1078 handle-module-built = \
1594 import-find-module = $(strip \
1624 import-module = \
1627 …$(call __ndk_info,$(call local-makefile): Cannot import module with spaces in tag: '$(__import_tag…
1630 $(call ndk_log,Skipping duplicate import for module with tag '$(__import_tag)')\
1632 $(call ndk_log,Looking for imported module with tag '$(__import_tag)')\
1633 $(eval __imported_path := $(call import-find-module,$(__import_tag)))\
1641 …$(call __ndk_info,$(call local-makefile): Cannot find module with tag '$(__import_tag)' in import …
1669 module-class-register = \
1684 module-class-register-installable = \
1685 $(call module-class-register,$1,$2,$3) \
1688 module-class-set-prebuilt = \
1693 module-class-check = $(call set_is_member,$(NDK_MODULE_CLASSES),$1)
1697 module-class-is-installable = $(if $(NDK_MODULE_CLASS.$1.INSTALLABLE),$(true),$(false))
1701 module-class-is-prebuilt = $(if $(NDK_MODULE_CLASS.$1.PREBUILT),$(true),$(false))
1709 $(call module-class-register,STATIC_LIBRARY,lib,.a)
1714 $(call module-class-register-installable,SHARED_LIBRARY,lib,.so)
1719 $(call module-class-register-installable,EXECUTABLE,,)
1724 $(call module-class-register-installable,PREBUILT_SHARED_LIBRARY,,)
1725 $(call module-class-set-prebuilt,PREBUILT_SHARED_LIBRARY)
1729 $(call module-class-register,PREBUILT_STATIC_LIBRARY,,)
1730 $(call module-class-set-prebuilt,PREBUILT_STATIC_LIBRARY)
1767 $(call import-module,$(NDK_STL.$1.IMPORT_MODULE))