Home
last modified time | relevance | path

Searched refs:libName (Results 1 – 11 of 11) sorted by relevance

/build/soong/partner/bpfix/extensions/
Dheaders.go26 libName string member
34 libName: "my_header_lib",
64 if lib.libName != "" {
65 addLibrary(mod, lib.libType, lib.libName)
86 func addLibrary(mod *parser.Module, libType string, libName string) {
96 if stringValue, ok := v.(*parser.String); ok && stringValue.Value == libName {
102 lib.Value = libName
/build/soong/cc/
Dvndk_prebuilt.go115 p.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), p.NameSuffix())
149 libName := in.Base()
152 stripped := android.PathForModuleOut(ctx, "stripped", libName)
159 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dndk_prebuilt.go169 libName := strings.TrimPrefix(ctx.ModuleName(), "ndk_")
176 lib := libDir.Join(ctx, libName+libExt)
Dprebuilt.go137 libName := p.libraryDecorator.getLibName(ctx) + flags.Toolchain.ShlibSuffix()
138 outputFile := android.PathForModuleOut(ctx, libName)
143 stripped := android.PathForModuleOut(ctx, "stripped", libName)
150 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dsnapshot_prebuilt.go550 p.libraryDecorator.libName = strings.TrimSuffix(ctx.ModuleName(), p.NameSuffix())
599 libName := in.Base()
604 tocFile := android.PathForModuleOut(ctx, libName+".toc")
Dndk_library.go285 stub.libraryDecorator.libName = ctx.baseModuleName()
Dbuilder.go878 libName := strings.TrimSuffix(baseName, filepath.Ext(baseName))
915 "libName": libName,
Dlibrary.go485 libName string member
726 libName := library.getLibName(ctx)
739 "-install_name @rpath/"+libName+flags.Toolchain.ShlibSuffix(),
749 f = append(f, "-Wl,-soname,"+libName+flags.Toolchain.ShlibSuffix())
937 name := library.libName
/build/soong/rust/
Drust_test.go154 libName := linkPathFromFilePath(barPath)
157 if libName != expectedResult {
158 …("libNameFromFilePath returned the wrong name; expected '%#v', got '%#v'", expectedResult, libName)
Drust.go1027 if libName, ok := libNameFromFilePath(linkObject.Path()); ok {
1028 depPaths.depFlags = append(depPaths.depFlags, "-lstatic="+libName)
1357 libName := strings.TrimSuffix(filepath.Base(), filepath.Ext())
1358 if strings.HasPrefix(libName, "lib") {
1359 libName = libName[3:]
1360 return libName, true
/build/soong/java/
Dapp.go1258 libName := dep
1260 libName = *ulib.ProvidesUsesLib()
1264 replaceInList(u.usesLibraryProperties.Uses_libs, dep, libName)
1265 replaceInList(u.usesLibraryProperties.Optional_uses_libs, dep, libName)
1267 clcMap.AddContext(ctx, tag.sdkVersion, libName,