Lines Matching refs:ret

55 	ret := android.AndroidMkData{
80 mod.subAndroidMk(&ret, mod.compiler)
82 mod.subAndroidMk(&ret, mod.sourceProvider)
84 ret.SubName += mod.Properties.SubName
86 return ret
89 func (binary *binaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
90 ctx.subAndroidMk(ret, binary.baseCompiler)
93 ret.DistFiles = android.MakeDefaultDistFiles(binary.distFile.Path())
96 ret.Class = "EXECUTABLES"
97 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
105 func (test *testDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
106 test.binaryDecorator.AndroidMk(ctx, ret)
107 ret.Class = "NATIVE_TESTS"
108 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
123 func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
124 ctx.subAndroidMk(ret, library.baseCompiler)
127 ret.Class = "RLIB_LIBRARIES"
129 ret.Class = "DYLIB_LIBRARIES"
131 ret.Class = "STATIC_LIBRARIES"
133 ret.Class = "SHARED_LIBRARIES"
137 ret.DistFiles = android.MakeDefaultDistFiles(library.distFile.Path())
140 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
151 func (procMacro *procMacroDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
152 ctx.subAndroidMk(ret, procMacro.baseCompiler)
154 ret.Class = "PROC_MACRO_LIBRARIES"
156 ret.DistFiles = android.MakeDefaultDistFiles(procMacro.distFile.Path())
161 func (sourceProvider *baseSourceProvider) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkDat…
163 ret.Class = "ETC"
164 ret.OutputFile = android.OptionalPathForPath(outFile)
165 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
173 func (bindgen *bindgenDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
174 ctx.subAndroidMk(ret, bindgen.baseSourceProvider)
175 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
180 func (compiler *baseCompiler) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
184 ret.OutputFile = android.OptionalPathForPath(compiler.path)
186 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {