Home
last modified time | relevance | path

Searched refs:sharedLibs (Results 1 – 14 of 14) sorted by relevance

/build/soong/python/
Dinstaller.go65 func (installer *pythonInstaller) setAndroidMkSharedLibs(sharedLibs []string) {
66 installer.androidMkSharedLibs = sharedLibs
Dpython.go226 setAndroidMkSharedLibs(sharedLibs []string)
487 var sharedLibs []string
491 sharedLibs = append(sharedLibs, ctx.OtherModuleName(dep))
494 p.installer.setAndroidMkSharedLibs(sharedLibs)
/build/soong/java/
Daar.go414 var sharedLibs android.Paths
424 sharedLibs = append(sharedLibs, sdkDep.jars...)
441 sharedLibs = append(sharedLibs, exportPackage)
445 sharedLibs = append(sharedLibs, exportPackage)
471 deps = append(deps, sharedLibs...)
478 for _, sharedLib := range sharedLibs {
/build/soong/cc/
Dbinary.go418 var sharedLibs android.Paths
421 sharedLibs = deps.EarlySharedLibs
422 sharedLibs = append(sharedLibs, deps.SharedLibs...)
423 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
434 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs, deps.StaticLibs,
Dprebuilt.go474 sharedLibs := ccInfo.CcSharedLibraryFiles
475 if len(sharedLibs) != 1 {
476 ctx.ModuleErrorf("expected 1 shared library from bazel target %s, got %q", label, sharedLibs)
490 if len(sharedLibs) == 0 {
495 out := android.PathForBazelOut(ctx, sharedLibs[0])
Dobject.go279 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, object.Properties.Shared_libs...)
Dbinary_sdk_member.go137 p.SharedLibs = specifiedDeps.sharedLibs
Dsnapshot_prebuilt.go186 sharedLibs := collectSnapshotMap(s.properties.Shared_libs, snapshotSuffix, SnapshotSharedSuffix)
190 sharedLibs[k] = v
198 SharedLibs: sharedLibs,
Dlibrary.go1334 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, properties.Shared_libs...)
1344 specifiedDeps.sharedLibs = android.FirstUniqueStrings(specifiedDeps.sharedLibs)
1515 sharedLibs := deps.EarlySharedLibs
1516 sharedLibs = append(sharedLibs, deps.SharedLibs...)
1517 sharedLibs = append(sharedLibs, deps.LateSharedLibs...)
1522 transformObjToDynamicBinary(ctx, objs.objFiles, sharedLibs,
Dbuilder.go810 …objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps, crtBegin, crtEnd android.… argument
842 for _, lib := range sharedLibs {
878 OrderOnly: sharedLibs,
Dlinker.go616 specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, linker.Properties.Shared_libs...)
Dbp2build.go657 sharedLibs := android.FirstUniqueStrings(props.Shared_libs)
659 usedSystem := android.FilterListPred(sharedLibs, func(s string) bool {
669 …sharedDeps := maybePartitionExportedAndImplementationsDepsExcludes(ctx, !isBinary, sharedLibs, pro…
Dlibrary_sdk_member.go553 p.SharedLibs = specifiedDeps.sharedLibs
Dcc.go587 sharedLibs []string member