Home | History | Annotate | Download | only in android

Lines Matching defs:Srcs

28 	// srcs lists files that will be included in this filegroup
29 Srcs []string `android:"path"`
47 srcs Paths
53 // properties (such as "srcs") using the syntax ":<name>". filegroup are
63 fg.srcs = PathsForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs)
66 fg.srcs = PathsWithModuleSrcSubDir(ctx, fg.srcs, String(fg.properties.Path))
70 func (fg *fileGroup) Srcs() Paths {
71 return append(Paths{}, fg.srcs...)
88 "value": strings.Join(fg.srcs.Strings(), " "),