Lines Matching refs:ret
42 ret := android.AndroidMkData{OutputFile: p.installSource}
44 p.subAndroidMk(&ret, p.installer)
46 return ret
49 func (p *binaryDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) {
50 ret.Class = "EXECUTABLES"
52 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
58 base.subAndroidMk(ret, p.pythonInstaller)
61 func (p *testDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) {
62 ret.Class = "NATIVE_TESTS"
64 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
78 base.subAndroidMk(ret, p.binaryDecorator.pythonInstaller)
81 func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMkData) {
85 ret.OutputFile = android.OptionalPathForPath(installer.path)
88 ret.Required = append(ret.Required, "libc++")
89 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {