HomeSort by relevance Sort by last modified time
    Searched defs:libs (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /bootable/recovery/updater/
Android.mk 45 # These libs are also linked in with updater, but we don't try to call
48 # extension libs.
63 $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) macro
67 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
69 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
  /external/compiler-rt/lib/dfsan/scripts/
build-libc-list.py 59 libs = [os.path.join(options.libc_dso_path, name) for name in variable
74 libs += [os.path.join(options.libc_archive_path, name) for name in
78 libs.append(os.path.join(options.libgcc_dso_path, 'libgcc_s.so.1'))
79 libs.append(os.path.join(options.libgcc_archive_path, 'libgcc.a'))
82 libs.append(os.path.join(options.libstdcxx_dso_path, 'libstdc++.so.6'))
85 for l in libs:
  /external/chromium_org/build/config/linux/
pkg-config.py 15 # The result will be [ <includes>, <cflags>, <libs>, <lib_dirs>, <ldflags> ]
123 [ "pkg-config", "--cflags", "--libs-only-l", "--libs-only-L" ] +
140 libs = [] variable
149 libs.append(RewritePath(flag[2:], prefix, sysroot))
157 # Many libs specify "-pthread" which we don't need since we always include
164 # Output a GN array, the first one is the cflags, the second are the libs. The
167 print json.dumps([includes, cflags, libs, lib_dirs, ldflags])
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
Makefile 121 grep-libs = $(filter -l%,$(1))
122 strip-libs = $(filter-out -l%,$(1))
525 LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group
550 $(BUILTIN_OBJS) $(LIBS) -o $@
654 $(QUIET_LINK)$(CC) $(CFLAGS) -o $@ $(LDFLAGS) $(filter %.o,$^) $(LIBS)
  /external/chromium_org/tools/win/split_link/
split_link.py 267 Log('building import libs') namespace
280 generated import libs and .def files. If the link fails, updates the
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 384 ArrayList<String> libs = new ArrayList<String>(); local
388 libs.add(name);
394 libs.add(optionalLibraries[i].getName());
397 setValues("(uses-library,android:name)", libs.toArray(new String[libs.size()]));
  /external/linux-tools-perf/perf-3.12.0/tools/perf/config/
Makefile 241 msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev);
267 FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
277 EXTLIBS += $(shell pkg-config --libs gtk+-2.0 2>/dev/null)
281 grep-libs = $(filter -l%,$(1))
282 strip-libs = $(filter-out -l%,$(1))
288 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
289 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
333 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
334 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
423 msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numa-libs-devel or libnuma-dev)
    [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/chromium_org/tools/gn/
command_desc.cc 152 // libs and lib_dirs are special in that they're inherited. We don't currently
168 const OrderedSet<std::string>& libs = target->all_libs(); local
169 if (libs.empty())
175 for (size_t i = 0; i < libs.size(); i++)
176 OutputString(" " + libs[i] + "\n");
434 " libs\n"
441 " for libs and lib_dirs because those are inherited and are more\n"
511 } else if (what == "libs") {
592 // Libs can be part of any target and get recursively pushed up the chain,
  /ndk/build/core/
definitions.mk 438 # of the module. Usually $PROJECT/libs/<abi>/<prefix><module><suffix>
522 # An installable module is one that will be copied to $PROJECT/libs/<abi>/
662 module-get-static-libs = $(__ndk_modules.$1.STATIC_LIBRARIES)
669 module-get-whole-static-libs = $(__ndk_modules.$1.WHOLE_STATIC_LIBRARIES)
676 module-get-all-static-libs = $(strip \
685 module-get-shared-libs = $(__ndk_modules.$1.SHARED_LIBRARIES)
694 module-get-direct-libs = $(strip \
731 # libraries. Use module-extract-whole-static-libs to filter the
734 module-get-link-libs = $(strip \
738 # Special dependency function used by module-get-link-libs
    [all...]
  /build/core/
main.mk 636 define resolve-shared-libs-depes
648 $(call resolve-shared-libs-depes,TARGET_)
650 $(call resolve-shared-libs-depes,TARGET_,true)
652 $(call resolve-shared-libs-depes,HOST_)
654 $(call resolve-shared-libs-depes,HOST_,true)
    [all...]
definitions.mk     [all...]
  /ndk/
ndk-gdb.py 634 gdbserver_path = os.path.join(PROJECT,'libs',COMPAT_ABI,'gdbserver')
637 log('Found gdbserver under libs/%s, assuming app was built with NDK_DEBUG=1' % (COMPAT_ABI))
648 error('''Could not find gdbserver binary under %s/libs/%s
773 libdir = os.path.join(PROJECT,'libs',COMPAT_ABI)
774 libs = [ f for f in os.listdir(libdir) variable
776 if 'libstlport_shared.so' in libs:
778 elif 'libgnustl_shared.so' in libs:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 105 libs = [] variable in class:BundleBuilder
199 for path in self.libs:
542 # Python.framework was specified manually in self.libs.
543 for lib in self.libs:
893 builder.libs.append(os.path.normpath(arg))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 259 List<LibraryState> libs = state.getLibraries(); local
261 for (LibraryState lib : libs) {
  /external/chromium_org/crypto/
nss_util.cc 1000 std::vector<std::string> libs; local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.5.7/
builder-0.5.7.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.10.0/
builder-0.10.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.11.2/
builder-0.11.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.1/
builder-0.12.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.12.2/
builder-0.12.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.7.0/
builder-0.7.0.jar 

Completed in 940 milliseconds

1 2 3 4 5