/external/v8/build/android/gyp/ |
D | write_ordered_libraries.py | 80 def GetSortedTransitiveDependencies(libraries): argument 83 libraries, GetNonSystemDependencies) 88 libraries = [os.path.basename(lib) for lib in binaries] 92 libraries = [lib for lib in all_deps if not IsSystemLibrary(lib)] 94 return GetSortedTransitiveDependencies(libraries) 114 libraries = build_utils.ParseGypList(options.input_libraries) 115 if len(libraries): 116 libraries = GetSortedTransitiveDependenciesForBinaries(libraries) 120 '{%s}' % ','.join(['"%s"' % s[3:-3] for s in libraries])) 123 'libraries': libraries, [all …]
|
D | pack_relocations.py | 76 libraries = [] 77 for libs_arg in options.libraries: 78 libraries += build_utils.ParseGypList(libs_arg) 86 for library in libraries: 105 libraries + build_utils.GetPythonDependencies())
|
/external/v8/build/android/ |
D | pack_relocations.gypi | 6 # packs relocations in Release builds of native libraries. 14 # 'exclude_packing_list': 'names of libraries explicitly not packed', 18 # 'stripped_libraries_dir': 'directory holding stripped libraries', 19 # 'packed_libraries_dir': 'directory holding packed libraries', 53 '--stripped-libraries-dir=<(stripped_libraries_dir)', 54 '--packed-libraries-dir=<(packed_libraries_dir)', 55 '--libraries=@FileArg(<(ordered_libraries_file):libraries)', 59 'message': 'Copying libraries (no relocation packing) for <(_target_name)', 64 '--stripped-libraries-dir=<(stripped_libraries_dir)', 65 '--packed-libraries-dir=<(packed_libraries_dir)', [all …]
|
D | strip_native_libraries.gypi | 6 # native libraries. 16 # 'stripped_libraries_dir': 'directory to store stripped libraries', 24 'message': 'Stripping libraries for <(_target_name)', 41 # changing base.so may not trigger changes to dependent libraries. 49 '--stripped-libraries-dir=<(stripped_libraries_dir)', 50 '--libraries-dir=<(SHARED_LIB_DIR),<(PRODUCT_DIR)', 51 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
|
D | push_libraries.gypi | 6 # pushes stripped shared libraries to the attached Android device. This should 15 # 'libraries_source_dir': 'location where stripped libraries are stored' 16 # 'device_library_dir': 'location on the device where to put pushed libraries', 27 'message': 'Pushing libraries to device for <(_target_name)', 43 '--libraries-dir=<(libraries_source_dir)', 45 '--libraries=@FileArg(<(ordered_libraries_file):libraries)',
|
D | insert_chromium_version.gypi | 6 # inserts a chromium version string into native libraries. 14 # 'stripped_libraries_dir': 'the directory contains native libraries' 24 'message': 'Inserting chromium version string into native libraries', 40 '--stripped-libraries-dir=<(stripped_libraries_dir)', 41 '--libraries=@FileArg(<(ordered_libraries_file):libraries)', 49 # changing base.so may not trigger changes to dependent libraries.
|
/external/v8/build/linux/ |
D | system.gyp | 16 # Used below for the various libraries. In this scope for sharing with GN. 102 'libraries': [ 123 'libraries': [ 150 'libraries': [ 164 'libraries': [ 185 'libraries': [ 212 'libraries': [ 226 'libraries': [ 245 'libraries': [ 262 'libraries': [ [all …]
|
/external/curl/m4/ |
D | xc-lt-iface.m4 | 39 # Default behavior is to enable shared and static libraries on systems 48 # User may have disabled shared or static libraries. 62 AC_MSG_ERROR([can not disable shared and static libraries simultaneously]) 67 # and build runs for shared and static is to enable shared libraries 91 # Default behavior is to build PIC objects for shared libraries and 92 # non-PIC objects for static libraries. 114 # is to build PIC objects even for static libraries. This behavior may 174 dnl Checks wether libtool shared and static libraries 185 # Verify if finally libtool shared libraries will be built 198 # Verify if finally libtool static libraries will be built [all …]
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/src/com/badlogic/gdx/controllers/desktop/ |
D | DesktopControllersBuild.java | 48 win32home.libraries = "-ldinput8 -ldxguid"; in main() 53 win32.libraries = "-ldinput8 -ldxguid"; in main() 58 win64.libraries = "-ldinput8 -ldxguid"; in main() 63 lin32.libraries = "-lX11"; in main() 68 lin64.libraries = "-lX11"; in main() 74 mac.libraries = "-framework CoreServices -framework Carbon -framework IOKit -framework Cocoa"; in main() 80 mac64.libraries = "-framework CoreServices -framework Carbon -framework IOKit -framework Cocoa"; in main()
|
/external/v8/ |
D | Android.libv8.mk | 45 GEN1 := $(generated_sources)/libraries.cc 51 V8_GENERATED_LIBRARIES := $(generated_sources)/libraries.cc 54 GEN2 := $(generated_sources)/experimental-libraries.cc 60 V8_GENERATED_LIBRARIES += $(generated_sources)/experimental-libraries.cc 63 GEN3 := $(generated_sources)/extra-libraries.cc 69 V8_GENERATED_LIBRARIES += $(generated_sources)/extra-libraries.cc 72 GEN3 := $(generated_sources)/experimental-extra-libraries.cc 78 V8_GENERATED_LIBRARIES += $(generated_sources)/experimental-extra-libraries.cc
|
/external/libcxxabi/src/ |
D | CMakeLists.txt | 44 set(libraries ${LIBCXXABI_CXX_ABI_LIBRARIES}) variable 45 append_if(libraries LIBCXXABI_HAS_C_LIB c) 47 append_if(libraries LIBCXXABI_HAS_PTHREAD_LIB pthread) 51 list(APPEND libraries unwind) 53 append_if(libraries LIBCXXABI_HAS_GCC_EH_LIB gcc_eh) 95 target_link_libraries(cxxabi_shared ${libraries}) 109 target_link_libraries(cxxabi_static ${libraries}) 118 # Add a meta-target for both libraries.
|
/external/llvm/docs/ |
D | Projects.rst | 12 projects that use LLVM header files, libraries, and tools. In order to use 59 Libraries can be object files, archives, or dynamic libraries. The **lib** 60 directory is just a convenient place for libraries as it places them all in 108 The LLVM build system provides a convenient way to build libraries and 173 This variable holds a space separated list of libraries that should be 174 linked into the program. These libraries must be libraries that come from 175 your **lib** directory. The libraries must be specified without their 179 Note that this works only for statically linked libraries. 183 This variable holds a space separated list of libraries that should be 184 linked into the program. These libraries must be LLVM libraries. The [all …]
|
/external/openssh/contrib/ |
D | findssl.sh | 136 libraries=`locate libcrypto.s` 138 libraries=`find / -name 'libcrypto.s*' -print 2>/dev/null` 141 for lib in $libraries 165 libraries=`locate libcrypto.a` 167 libraries=`find / -name libcrypto.a -print 2>/dev/null` 170 for lib in $libraries
|
/external/v8/tools/gyp/test/mac/libraries/subdir/ |
D | test.gyp | 8 'target_name': 'libraries-test', 14 'libraries': [ 21 # libraries-search-path-test. 47 'target_name': 'libraries-search-path-test', 59 'libraries': [
|
/external/v8/tools/gyp/test/mac/objc-gc/ |
D | test.gyp | 54 'libraries': [ 'Foundation.framework' ], 64 'libraries': [ 'Foundation.framework' ], 74 'libraries': [ 'Foundation.framework' ], 84 'libraries': [ 'Foundation.framework' ], 91 'libraries': [ 'Foundation.framework' ], 98 'libraries': [ 'Foundation.framework' ],
|
/external/icu/icu4c/source/samples/legacy/ |
D | README | 12 2) explicitly add old libraries to the linker. 18 … 1.8.1. Put both data libraries to wherever ICU_DATA points (usually it is $(prefix)/share/icu/$(i… 19 …ibicuuc.so.18* and libicui18n.so.18* to $(prefix)/lib directory, together with current libraries). 25 Run make check. You should get two different libraries running at the same time. 37 …ample won't link: The path for 1.8.1. libraries is broken. Edit it so that it reflects the path t… 38 Linker says: "Undefined symbol u_getVersion()" (or something similar): path to 1.8.1. libraries is … 39 …ys: "Undefined symbol u_getVersion()_X_Y" (or something similar): path to current libraries is bad. 40 … If legacy crashes that's most probably because it cannot find the data libraries. You can see whi…
|
/external/guava/ |
D | README.android | 1 URL: http://code.google.com/p/guava-libraries/source/checkout 11 Guava-libraries are a grab bag of utility libraries published by Google as 12 open source, including among other things the Google collections libraries.
|
/external/skia/gyp/ |
D | android_deps.gyp | 7 # platform. The OS doesn't provide many stable libraries as part of the 37 'libraries' : [ 46 'libraries' : [ 58 'libraries' : [ 70 'libraries' : [ 82 'libraries' : [
|
D | gpu.gyp | 53 'libraries/': [ 139 'libraries': [ 147 'libraries': [ 166 'libraries': [ 173 'libraries': [ 190 'libraries': [ 231 'libraries': [
|
/external/llvm/docs/CommandGuide/ |
D | llvm-config.rst | 17 print the compiler flags, linker flags and object libraries needed to link 85 Print the installation directory for LLVM libraries. 97 Print the flags needed to link against LLVM libraries. 103 Print all the libraries needed to link against the specified LLVM 110 Similar to **--libs**, but prints the bare filenames of the libraries 149 libraries. Useful "virtual" components include: 154 Includes all LLVM libraries. The default if no components are specified.
|
/external/eigen/cmake/ |
D | FindLAPACK.cmake | 15 # LAPACK_LIBRARIES_DIR - Directories containing the LAPACK libraries. 16 # May be null if LAPACK_LIBRARIES contains libraries name using full path. 17 # LAPACK_LIBRARIES - List of libraries to link against LAPACK interface. 20 # applications or libraries using LAPACK. 23 # - find libraries for a C++ compiler, instead of Fortran 30 # This macro checks for the existence of the combination of fortran libraries 34 # flags given by _flags. If the combination of libraries is found and passes 43 # Check for the existence of the libraries given by _list 84 # Test this combination of libraries with the Fortran/f2c interface. 89 # Some C++ linkers require the f2c library to link with Fortran libraries. [all …]
|
D | FindBLAS.cmake | 5 # The list of libraries searched for is mainly taken 16 # BLAS_LIBRARIES_DIR - Directories containing the BLAS libraries. 17 # May be null if BLAS_LIBRARIES contains libraries name using full path. 18 # BLAS_LIBRARIES - List of libraries to link against BLAS interface. 21 # applications or libraries using BLAS. 24 # - find libraries for a C++ compiler, instead of Fortran 31 # This macro checks for the existence of the combination of fortran libraries 35 # flags given by _flags. If the combination of libraries is found and passes 44 # Check for the existence of the libraries given by _list 85 # Test this combination of libraries with the Fortran/f2c interface. [all …]
|
/external/libxml2/python/ |
D | README | 5 libxml2 and libxslt (if available) libraries. For general 6 informationss on those XML and XSLT libraries check their 13 associated libraries can be found at: 16 Binaries packages of the libxml2 and libxslt libraries can 29 those two libraries.
|
/external/icu/icu4c/packaging/ |
D | PACKAGES | 12 - ICU libraries. This package contains the runtime libraries needed by 20 libraries used by the linker, static libraries, etc... It also 43 When referring to libraries, .so will be used to denote the extension 78 + The ICU libraries package 80 The ICU libraries package is typically named `libicuXX' where XX is 81 the major number of ICU's libraries. This number is ICU's version 90 - All the shared libraries, and their major number symbolic link, but 98 libraries package and commands to create and manipulate that data. 129 latest version of the libraries. 137 This package depends on the ICU libraries package with the exact same [all …]
|
/external/icu/icu4c/source/ |
D | icudefs.mk.in | 133 # LIBCFLAGS are the flags for static and shared libraries. 135 # LIBCXXFLAGS are the flags for static and shared libraries. 137 # DEFAULT_LIBS are the default libraries to link against 145 # AR_OUTOPT is for creating a specific output name for static libraries. 154 # What kind of libraries are we building and linking against? 204 ## How ICU libraries are named... ex. $(LIBICU)uc$(SO) 210 ## If we can't use the shared libraries, use the static libraries 227 # INSTALL-L installs libraries. Override in mh-* file to INSTALL_PROGRAM 233 # Location of the libraries before "make install" is used 293 # Invoke, set library path for all ICU libraries. [all …]
|