Home | History | Annotate | Download | only in cc

Lines Matching defs:Srcs

32 	// srcs may reference the outputs of other modules that produce source files like genrule
34 Srcs []string `android:"path,arch_variant"`
139 Srcs []string `android:"path"`
152 Srcs []string `android:"path"`
188 srcs android.Paths
199 Srcs() android.Paths
202 func (compiler *baseCompiler) Srcs() android.Paths {
203 return append(android.Paths{}, compiler.srcs...)
261 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
502 if len(compiler.Properties.Srcs) > 0 {
529 for _, src := range compiler.Properties.Srcs {
560 srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
562 srcs, genDeps := genSources(ctx, srcs, buildFlags)
569 compiler.srcs = srcs
571 // Compile files listed in c.Properties.Srcs into objects
572 objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps)