Lines Matching refs:depends
178 # depends -> list of other modules this module depends on
255 modules-fields = depends \
386 # Function : module-add-static-depends
388 # 2: list/set of static library modules this module depends on.
390 # Usage : $(call module-add-static-depends,<modulename>,<list of module names>)
391 # Rationale: Record that a module depends on a set of static libraries.
394 module-add-static-depends = \
395 $(call module-add-depends-any,$1,$2,depends) \
398 # Function : module-add-shared-depends
400 # 2: list/set of shared library modules this module depends on.
402 # Usage : $(call module-add-shared-depends,<modulename>,<list of module names>)
403 # Rationale: Record that a module depends on a set of shared libraries.
406 module-add-shared-depends = \
407 $(call module-add-depends-any,$1,$2,depends) \
409 # Used internally by module-add-static-depends and module-add-shared-depends
410 # NOTE: this function must not modify the existing dependency order when new depends are added.
412 module-add-depends-any = \
419 $(call module-compute-depends,$(__module))\
422 module-compute-depends = \
423 $(call module-add-static-depends,$1,$(__ndk_modules.$1.STATIC_LIBRARIES))\
424 $(call module-add-static-depends,$1,$(__ndk_modules.$1.WHOLE_STATIC_LIBRARIES))\
425 $(call module-add-shared-depends,$1,$(__ndk_modules.$1.SHARED_LIBRARIES))\
432 # Returns : List of all the modules $1 depends on transitively.
437 $(strip $(call modules-get-closure,$1,depends))
974 # an object. The proper way to do that depends on the file extension.