Searched refs:stripper (Results 1 – 4 of 4) sorted by relevance
/build/soong/cc/ |
D | strip.go | 33 type stripper struct { struct 37 func (stripper *stripper) needsStrip(ctx ModuleContext) bool { argument 39 …return (!ctx.Config().EmbeddedInMake() || ctx.Device()) && !Bool(stripper.StripProperties.Strip.No… 42 func (stripper *stripper) strip(ctx ModuleContext, in android.Path, out android.ModuleOutPath, argument 47 if Bool(stripper.StripProperties.Strip.Keep_symbols) { 49 } else if len(stripper.StripProperties.Strip.Keep_symbols_list) > 0 { 50 flags.stripKeepSymbolsList = strings.Join(stripper.StripProperties.Strip.Keep_symbols_list, ",") 51 } else if !Bool(stripper.StripProperties.Strip.All) { 54 if Bool(stripper.StripProperties.Strip.Use_gnu_strip) {
|
D | toolchain_library.go | 37 stripper anonMember 50 return append(props, &library.Properties, &library.stripper.StripProperties) 82 if library.stripper.StripProperties.Strip.Keep_symbols_list != nil { 86 library.stripper.strip(ctx, srcPath, outputFile, buildFlags)
|
D | binary.go | 79 stripper anonMember 105 &binary.stripper.StripProperties) 323 if binary.stripper.needsStrip(ctx) { 329 binary.stripper.strip(ctx, outputFile, strippedOutputFile, builderFlags) 350 if binary.stripper.needsStrip(ctx) { 353 binary.stripper.strip(ctx, versionedOutputFile, out, builderFlags)
|
D | library.go | 263 stripper anonMember 318 &library.stripper.StripProperties) 695 if library.stripper.needsStrip(ctx) { 701 library.stripper.strip(ctx, outputFile, strippedOutputFile, builderFlags) 715 if library.stripper.needsStrip(ctx) { 718 library.stripper.strip(ctx, versionedOutputFile, out, builderFlags)
|