Home
last modified time | relevance | path

Searched refs:Strip (Results 1 – 4 of 4) sorted by relevance

/build/soong/cc/
Dstrip.go25 Strip struct { member
54 forceDisable := Bool(stripper.StripProperties.Strip.None)
56 forceEnable := Bool(stripper.StripProperties.Strip.All) ||
57 Bool(stripper.StripProperties.Strip.Keep_symbols) ||
58 Bool(stripper.StripProperties.Strip.Keep_symbols_and_debug_frame)
67 if Bool(stripper.StripProperties.Strip.Keep_symbols) {
69 } else if Bool(stripper.StripProperties.Strip.Keep_symbols_and_debug_frame) {
71 } else if len(stripper.StripProperties.Strip.Keep_symbols_list) > 0 {
72 flags.StripKeepSymbolsList = strings.Join(stripper.StripProperties.Strip.Keep_symbols_list, ",")
73 } else if !Bool(stripper.StripProperties.Strip.All) {
Dtoolchain_library.go97 if library.stripper.StripProperties.Strip.Keep_symbols_list != nil {
Dlibrary.go1354 library.stripper.StripProperties.Strip.None = BoolPtr(true)
/build/soong/android/
Dvariable.go99 Strip struct {