Lines Matching refs:prebuilt
669 prebuilt := &snapshotLibraryDecorator{
673 prebuilt.baseLinker.Properties.No_libcrt = BoolPtr(true)
674 prebuilt.baseLinker.Properties.Nocrt = BoolPtr(true)
677 if prebuilt.baseLinker.Properties.System_shared_libs == nil {
678 prebuilt.baseLinker.Properties.System_shared_libs = []string{}
682 module.linker = prebuilt
683 module.installer = prebuilt
685 prebuilt.init(module, image, moduleSuffix)
687 &prebuilt.properties,
688 &prebuilt.sanitizerProperties,
691 return module, prebuilt
699 module, prebuilt := snapshotLibraryFactory(vendorSnapshotImageSingleton, snapshotSharedSuffix)
700 prebuilt.libraryDecorator.BuildOnlyShared()
709 module, prebuilt := snapshotLibraryFactory(recoverySnapshotImageSingleton, snapshotSharedSuffix)
710 prebuilt.libraryDecorator.BuildOnlyShared()
719 module, prebuilt := snapshotLibraryFactory(vendorSnapshotImageSingleton, snapshotStaticSuffix)
720 prebuilt.libraryDecorator.BuildOnlyStatic()
729 module, prebuilt := snapshotLibraryFactory(recoverySnapshotImageSingleton, snapshotStaticSuffix)
730 prebuilt.libraryDecorator.BuildOnlyStatic()
739 module, prebuilt := snapshotLibraryFactory(vendorSnapshotImageSingleton, snapshotHeaderSuffix)
740 prebuilt.libraryDecorator.HeaderOnly()
749 module, prebuilt := snapshotLibraryFactory(recoverySnapshotImageSingleton, snapshotHeaderSuffix)
750 prebuilt.libraryDecorator.HeaderOnly()
837 prebuilt := &snapshotBinaryDecorator{
844 module.linker = prebuilt
846 prebuilt.init(module, image, moduleSuffix)
847 module.AddProperties(&prebuilt.properties)
901 prebuilt := &snapshotObjectLinker{
906 module.linker = prebuilt
908 prebuilt.init(module, vendorSnapshotImageSingleton, snapshotObjectSuffix)
909 module.AddProperties(&prebuilt.properties)
919 prebuilt := &snapshotObjectLinker{
924 module.linker = prebuilt
926 prebuilt.init(module, recoverySnapshotImageSingleton, snapshotObjectSuffix)
927 module.AddProperties(&prebuilt.properties)