Searched refs:module (Results 1 – 25 of 66) sorted by relevance
123
/ndk/build/core/ |
D | import-locals.mk | 29 all_depends := $(call module-get-all-dependencies,$(LOCAL_MODULE)) 32 imported_CFLAGS := $(call module-get-listed-export,$(all_depends),CFLAGS) 33 imported_CONLYFLAGS := $(call module-get-listed-export,$(all_depends),CONLYFLAGS) 34 imported_CPPFLAGS := $(call module-get-listed-export,$(all_depends),CPPFLAGS) 35 imported_RENDERSCRIPT_FLAGS := $(call module-get-listed-export,$(all_depends),RENDERSCRIPT_FLAGS) 36 imported_ASMFLAGS := $(call module-get-listed-export,$(all_depends),ASMFLAGS) 37 imported_C_INCLUDES := $(call module-get-listed-export,$(all_depends),C_INCLUDES) 38 imported_LDFLAGS := $(call module-get-listed-export,$(all_depends),LDFLAGS) 41 $(info Imports for module $(LOCAL_MODULE):) 73 imported_LDLIBS := $(call module-get-listed-export,$(all_depends),LDLIBS)
|
D | definitions.mk | 493 module-add = \ 496 $(call __ndk_info,Trying to define local module '$1' in $(LOCAL_MAKEFILE).)\ 497 $(call __ndk_info,But this module was already defined by $(__ndk_modules.$1.MAKEFILE).)\ 504 $(if $(call module-class-is-installable,$(LOCAL_MODULE_CLASS)),\ 513 $(call module-handle-c++-features,$1) 517 module-get-class = $(__ndk_modules.$1.MODULE_CLASS) 520 module-get-built = $(__ndk_modules.$1.BUILT_MODULE) 526 module-is-installable = $(call module-class-is-installable,$(call module-get-class,$1)) 533 module-is-copyable = $(call module-class-is-copyable,$(call module-get-class,$1)) 543 module-get-export = $(__ndk_modules.$1.EXPORT_$2) [all …]
|
D | build-static-library.mk | 29 $(call handle-module-filename,lib,$(TARGET_LIB_EXTENSION)) 30 $(call handle-module-built) 33 include $(BUILD_SYSTEM)/build-module.mk
|
D | build-executable.mk | 30 $(call handle-module-filename,,) 31 $(call handle-module-built) 34 include $(BUILD_SYSTEM)/build-module.mk
|
D | build-shared-library.mk | 30 $(call handle-module-filename,lib,$(TARGET_SONAME_EXTENSION)) 31 $(call handle-module-built) 34 include $(BUILD_SYSTEM)/build-module.mk
|
D | build-binary.mk | 18 $(call module-restore-locals,$(LOCAL_MODULE)) 39 ifeq ($(call module-get-class,$(LOCAL_MODULE)),STATIC_LIBRARY) 81 $(call __ndk_info, current module) 90 ifneq (STATIC_LIBRARY,$(call module-get-class,$(LOCAL_MODULE))) 213 ifeq ($(call module-get-class,$(LOCAL_MODULE)),EXECUTABLE) 366 …$(call __ndk_info,WARNING: Unsupported source file extensions in $(LOCAL_MAKEFILE) for module $(LO… 393 ifneq (,$(call module-has-c++-features,$(LOCAL_MODULE),rtti)) 396 ifneq (,$(call module-has-c++-features,$(LOCAL_MODULE),exceptions)) 403 ifneq (,$(call module-has-c++-features,$(LOCAL_MODULE),rtti exceptions)) 421 ifneq ($(call module-is-shared-library,$(LOCAL_MODULE)),) [all …]
|
D | build-module.mk | 29 $(if $(call module-class-check,$(LOCAL_MODULE_CLASS)),,\ 34 $(call module-add,$(LOCAL_MODULE))
|
D | prebuilt-library.mk | 59 $(eval $(call ev-check-module-filename)) 74 include $(BUILD_SYSTEM)/build-module.mk
|
/ndk/tests/device/multi-static-instances/jni/ |
D | Android.mk | 21 $(call import-module,cxx-stl/gnu-libstdc++) 22 $(call import-module,cxx-stl/stlport) 23 $(call import-module,cxx-stl/system)
|
/ndk/sources/host-tools/gdb-pretty-printers/stlport/gppfs-0.2/ |
D | README | 4 This python module provides GDB pretty printers for the containers from 5 STLport. It is based on a similar python module for libstdc++ [1]. It has 14 To install the python module copy the "stlport" subdirectory to some place. 24 # see the python module for a description of these options
|
/ndk/sources/third_party/googletest/ |
D | README.NDK | 15 This directory contains several module definitions that can be imported 18 $(call import-module,third_party/googletest) 37 your module depends on one of the modules above. 56 $(call import-module,third_party/googletest)
|
/ndk/tests/device/test-googletest-full/jni/ |
D | Android.mk | 5 $(call import-module,third_party/googletest)
|
/ndk/tests/device/test-googletest-gnustl/jni/ |
D | Android.mk | 4 $(call import-module,third_party/googletest)
|
/ndk/tests/device/test-googletest-stlport/jni/ |
D | Android.mk | 4 $(call import-module,third_party/googletest)
|
/ndk/tests/build/no-installable-modules/jni/ |
D | Android.mk | 13 $(call import-module,android/cpufeatures)
|
/ndk/tests/build/multi-module-path/jni/ |
D | Android.mk | 9 $(call import-module,bar)
|
/ndk/tests/build/import-install/jni/ |
D | Android.mk | 9 $(call import-module,path1)
|
/ndk/tests/build/import-static/jni/ |
D | Android.mk | 9 $(call import-module,foo)
|
/ndk/tests/build/import-install/path1/ |
D | Android.mk | 14 $(call import-module,path2)
|
/ndk/tests/device/test-unwind-struct/jni/ |
D | Android.mk | 9 $(call import-module,cxx-stl/stlport)
|
/ndk/tests/build/multi-module-path/path2/bar/ |
D | Android.mk | 10 $(call import-module,foo)
|
/ndk/tests/build/import-static/foo/ |
D | Android.mk | 10 $(call import-module,bar)
|
/ndk/tests/build/prebuild-stlport/jni/ |
D | Android.mk | 15 $(call import-module,cxx-stl/stlport)
|
/ndk/tests/device/asan-smoke/jni/ |
D | Android.mk | 13 $(call import-module,third_party/googletest)
|
/ndk/tests/device/test-libc++/jni/ |
D | Android.mk | 15 $(call import-module,cxx-stl/llvm-libc++)
|
123