Home | History | Annotate | Download | only in genrule

Lines Matching defs:Srcs

29 	// srcs lists files that will be included in this filegroup
30 Srcs []string
48 srcs android.Paths
54 // boundaries. filegroups (and genrules) can be referenced from srcs properties of other modules
64 android.ExtractSourcesDeps(ctx, fg.properties.Srcs)
69 fg.srcs = ctx.ExpandSourcesSubDir(fg.properties.Srcs, fg.properties.Exclude_srcs, String(fg.properties.Path))
72 func (fg *fileGroup) Srcs() android.Paths {
73 return append(android.Paths{}, fg.srcs...)
90 "value": strings.Join(fg.srcs.Strings(), " "),