Searched refs:library (Results 1 – 25 of 28) sorted by relevance
12
/build/soong/cc/ |
D | library.go | 117 module, library := NewLibrary(android.HostAndDeviceSupported) 118 library.BuildOnlyStatic() 124 module, library := NewLibrary(android.HostAndDeviceSupported) 125 library.BuildOnlyShared() 131 module, library := NewLibrary(android.HostSupported) 132 library.BuildOnlyStatic() 138 module, library := NewLibrary(android.HostSupported) 139 library.BuildOnlyShared() 145 module, library := NewLibrary(android.HostAndDeviceSupported) 146 library.HeaderOnly() [all …]
|
D | prebuilt.go | 72 module, library := NewLibrary(hod) 73 library.BuildOnlyShared() 77 libraryDecorator: library, 81 return module, library 90 module, library := NewLibrary(hod) 91 library.BuildOnlyStatic() 95 libraryDecorator: library, 99 return module, library
|
D | toolchain_library.go | 41 module, library := NewLibrary(android.HostAndDeviceSupported) 42 library.BuildOnlyStatic() 44 libraryDecorator: library, 55 func (library *toolchainLibraryDecorator) compile(ctx ModuleContext, flags Flags, 60 func (library *toolchainLibraryDecorator) link(ctx ModuleContext,
|
D | androidmk.go | 116 func (library *libraryDecorator) androidMkWriteExportedFlags(w io.Writer) { 117 exportedFlags := library.exportedFlags() 121 exportedFlagsDeps := library.exportedFlagsDeps() 127 func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) { 128 if library.static() { 130 } else if library.shared() { 131 ctx.subAndroidMk(ret, &library.stripper) 132 ctx.subAndroidMk(ret, &library.relocationPacker) 135 } else if library.header() { 161 library.androidMkWriteExportedFlags(w) [all …]
|
D | ndk_prebuilt.go | 103 module, library := NewLibrary(android.DeviceSupported) 104 library.BuildOnlyShared() 106 libraryDecorator: library, 134 module, library := NewLibrary(android.DeviceSupported) 135 library.BuildOnlyShared() 138 libraryDecorator: library, 149 module, library := NewLibrary(android.DeviceSupported) 150 library.BuildOnlyStatic() 153 libraryDecorator: library,
|
D | kernel_headers.go | 36 module, library := NewLibrary(android.HostAndDeviceSupported) 37 library.HeaderOnly() 40 libraryDecorator: library,
|
D | llndk_library.go | 143 module, library := NewLibrary(android.DeviceSupported) 144 library.BuildOnlyShared() 147 library.StripProperties.Strip.None = true 150 libraryDecorator: library, 158 &library.MutatedProperties, 159 &library.flagExporter.Properties)
|
D | ndk_library.go | 346 module, library := NewLibrary(android.DeviceSupported) 347 library.BuildOnlyShared() 350 library.StripProperties.Strip.None = true 353 libraryDecorator: library, 359 module.AddProperties(&stub.properties, &library.MutatedProperties)
|
D | cc.go | 248 library bool member 254 sharedDepTag = dependencyTag{name: "shared", library: true} 255 sharedExportDepTag = dependencyTag{name: "shared", library: true, reexportFlags: true} 256 lateSharedDepTag = dependencyTag{name: "late shared", library: true} 257 staticDepTag = dependencyTag{name: "static", library: true} 258 staticExportDepTag = dependencyTag{name: "static", library: true, reexportFlags: true} 259 lateStaticDepTag = dependencyTag{name: "late static", library: true} 260 wholeStaticDepTag = dependencyTag{name: "whole static", library: true, reexportFlags: true} 261 headerDepTag = dependencyTag{name: "header", library: true} 262 headerExportDepTag = dependencyTag{name: "header", library: true, reexportFlags: true} [all …]
|
D | test.go | 288 module, library := NewLibrary(android.HostAndDeviceSupported) 289 library.baseInstaller = NewTestInstaller() 292 linker: library.baseLinker, 294 libraryDecorator: library,
|
/build/make/core/ |
D | host_shared_library_internal.mk | 20 $(error $(LOCAL_PATH): Cannot set module stem for a library) 23 $(call host-shared-library-hook)
|
D | proguard_basic_keeps.flags | 24 # see http://proguard.sourceforge.net/manual/examples.html#library 62 # The support library contains references to newer platform versions. 67 # DO NOT USE THIS: We figured it's dangerous to blindly ignore all support library warnings. 69 # LOCAL_SDK_VERSION lower than the support library's LOCAL_SDK_VERSION.
|
D | header_library_internal.mk | 11 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | host_static_library_internal.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | aux_static_library.mk | 17 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | shared_library_internal.mk | 20 $(error $(LOCAL_PATH): Cannot set module stem for a library) 23 $(call target-shared-library-hook)
|
D | static_library_internal.mk | 18 $(error $(LOCAL_PATH): Cannot set module stem for a library)
|
D | WINPTHREADS_COPYING | 23 * Parts of this library are derived by: 25 * Posix Threads library for Microsoft Windows
|
D | package_internal.mk | 322 LOCAL_STATIC_JAVA_AAR_LIBRARIES += databinding-library databinding-adapters 330 LOCAL_AAPT_FLAGS += --auto-add-overlay --extra-packages com.android.databinding.library
|
D | LINUX_KERNEL_COPYING | 353 proprietary programs. If your program is a subroutine library, you may 355 library. If this is what you want to do, use the GNU Library General
|
/build/make/tools/droiddoc/test/stubs/ |
D | func.sh | 40 -J-Djava.library.path=out/host/$PLATFORM/lib \
|
/build/soong/ |
D | Android.bp | 135 "cc/library.go", 237 "python/library.go",
|
D | README.md | 124 for static and shared version of a library, or for host and device versions).
|
/build/make/tools/acp/ |
D | README | 27 library, the time stamp no longer matches. Preserving the time
|
/build/make/tools/fs_config/ |
D | README | 125 2. In your Makefile add this static library like so: LOCAL_STATIC_LIBRARIES := liboemaids
|
12