Home
last modified time | relevance | path

Searched refs:Srcs (Results 1 – 25 of 69) sorted by relevance

123

/aosp12/build/soong/cc/
H A Dprebuilt.go43 Srcs []string `android:"path,arch_variant"` member
68 return p.properties.Srcs
208 srcs := p.properties.Srcs
230 p.properties.Srcs = nil
314 Srcs []string `android:"path,arch_variant"` member
382 if len(p.properties.Srcs) > 0 {
427 if len(p.properties.Srcs) > 0 {
517 Srcs []string `android:"path,arch_variant"`
532 return sanitized.Address.Srcs
535 return sanitized.Hwaddress.Srcs
[all …]
H A Dvndk_prebuilt.go64 Srcs []string `android:"arch_variant"` member
120 if len(p.properties.Srcs) == 0 {
125 if len(p.properties.Srcs) > 1 {
130 return android.PathForModuleSrc(ctx, p.properties.Srcs[0])
141 if len(p.properties.Srcs) > 0 && p.shared() {
195 if len(p.properties.Srcs) == 0 {
H A Dccdeps.go56 Srcs []string `json:"srcs,omitempty"` member
189 srcs := compiledModule.Srcs()
210 dpInfo.Srcs = append(dpInfo.Srcs, srcs.Strings()...)
212 dpInfo.Srcs = android.FirstUniqueStrings(dpInfo.Srcs)
H A Dndk_headers.go71 Srcs []string `android:"path"` member
128 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
143 ctx.ModuleErrorf("srcs %q matched zero files", m.properties.Srcs)
294 Srcs []string member
323 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
341 ctx.ModuleErrorf("srcs %q matched zero files", m.properties.Srcs)
H A Dimage.go637 lib.baseCompiler.Properties.Srcs = append(lib.baseCompiler.Properties.Srcs,
638 lib.baseCompiler.Properties.Target.Vendor.Srcs...)
650 lib.baseCompiler.Properties.Srcs = append(lib.baseCompiler.Properties.Srcs,
651 lib.baseCompiler.Properties.Target.Product.Srcs...)
663 lib.baseCompiler.Properties.Srcs = append(lib.baseCompiler.Properties.Srcs,
664 lib.baseCompiler.Properties.Target.Recovery.Srcs...)
H A Dcompiler.go40 Srcs []string `android:"path,arch_variant"` member
152 Srcs []string `android:"path"`
169 Srcs []string `android:"path"`
240 Srcs() android.Paths
243 func (compiler *baseCompiler) Srcs() android.Paths { func
302 …compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler…
564 if len(compiler.Properties.Srcs) > 0 {
597 for _, src := range compiler.Properties.Srcs {
/aosp12/build/soong/sysprop/
H A Dsysprop_library.go40 Srcs []string `android:"path"` member
158 Srcs []string `android:"path"` member
262 Inputs(android.PathsForModuleSrc(ctx, m.properties.Srcs))
378 Srcs []string member
406 Srcs []string member
421 if len(m.properties.Srcs) == 0 {
467 ccProps.Srcs = m.properties.Srcs
499 Srcs: m.properties.Srcs,
515 Srcs: []string{":" + m.javaGenModuleName()},
529 Srcs: m.properties.Srcs,
[all …]
/aosp12/build/soong/android/
H A Dfilegroup.go33 Srcs bazel.LabelListAttribute member
61 BazelLabelForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs))
63 Srcs: srcs,
73 Srcs []string `android:"path"` member
135 fg.srcs = PathsForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs)
141 func (fg *fileGroup) Srcs() Paths { func
H A Dprebuilt_test.go438 Srcs []string `android:"path,arch_variant"`
446 InitPrebuiltModule(m, &m.properties.Srcs)
456 if len(p.properties.Srcs) >= 1 {
506 func (s *sourceModule) Srcs() Paths { func
/aosp12/art/build/
H A Dcodegen.go77 p.Srcs = append(p.Srcs, arch.CodegenSourceArchProperties.Srcs...)
162 sourceProps.Srcs = android.FirstUniqueStrings(sourceProps.Srcs)
173 Srcs []string member
/aosp12/build/blueprint/bootstrap/
H A Dbootstrap.go244 Srcs []string
249 Srcs []string
253 Srcs []string
355 srcs = append(g.properties.Srcs, g.properties.Darwin.Srcs...)
358 srcs = append(g.properties.Srcs, g.properties.Linux.Srcs...)
379 Srcs []string
385 Srcs []string
389 Srcs []string
467 srcs = append(g.properties.Srcs, g.properties.Darwin.Srcs...)
470 srcs = append(g.properties.Srcs, g.properties.Linux.Srcs...)
/aosp12/system/tools/xsdc/build/
H A Dxsdc.go63 Srcs []string member
116 Srcs []string member
128 func (module *xsdConfig) Srcs() android.Paths { func
141 android.ExtractSourcesDeps(ctx, module.properties.Srcs)
163 if len(module.properties.Srcs) != 1 {
173 srcFiles := ctx.ExpandSources(module.properties.Srcs, nil)
281 Srcs: []string{":" + name},
/aosp12/system/sepolicy/build/soong/
H A Dcompat_cil.go44 Srcs []string member
55 srcPaths := make(android.Paths, 0, len(c.properties.Srcs))
56 for _, src := range c.properties.Srcs {
80 android.ExtractSourcesDeps(ctx, c.properties.Srcs)
H A Dselinux_contexts.go31 Srcs []string `android:"path"` member
35 Srcs []string
39 Srcs []string
61 Srcs []string
176 for _, src := range m.properties.Srcs {
204 srcs = append(srcs, m.properties.Product_variables.Debuggable.Srcs...)
209 srcs = append(srcs, m.properties.Product_variables.Address_sanitize.Srcs...)
214 m.properties.Srcs = append(m.properties.Srcs, srcs...)
330 for _, src := range m.fileContextsProperties.Flatten_apex.Srcs {
/aosp12/build/soong/rust/
H A Dprebuilt.go29 Srcs []string `android:"path,arch_variant"` member
122 srcs := prebuilt.Properties.Srcs
124 srcs = append(srcs, prebuilt.libraryDecorator.Properties.Rlib.Srcs...)
127 srcs = append(srcs, prebuilt.libraryDecorator.Properties.Dylib.Srcs...)
H A Dsource_provider.go43 Srcs() android.Paths
50 func (sp *BaseSourceProvider) Srcs() android.Paths { func
/aosp12/system/tools/hidl/build/
H A Dhidl_interface.go483 Srcs []string member
661 Srcs: i.properties.Srcs,
671 Inputs: i.properties.Srcs,
681 Inputs: i.properties.Srcs,
727 Inputs: i.properties.Srcs,
764 Inputs: i.properties.Srcs,
784 Inputs: i.properties.Srcs,
794 Inputs: i.properties.Srcs,
832 Inputs: i.properties.Srcs,
954 Inputs: i.properties.Srcs,
[all …]
H A Dproperties.go24 Srcs []string member
56 Srcs []string member
/aosp12/hardware/interfaces/compatibility_matrices/build/
H A Dvintf_compatibility_matrix.go63 Srcs []string member
93 android.ExtractSourcesDeps(ctx, g.properties.Srcs)
125 schemaSrcs := sfp.Srcs()
145 inputPaths := android.PathsForModuleSrc(ctx, g.properties.Srcs)
/aosp12/system/tools/aidl/build/
H A Dproperties.go73 Srcs []string member
85 Srcs []string member
H A Daidl_mapping.go41 Srcs []string `android:"path"` member
55 srcs, imports := getPaths(ctx, s.properties.Srcs, "")
H A Daidl_interface_backends.go76 Srcs: srcs,
234 Srcs: srcs,
260 Srcs: []string{":" + javaSourceGen},
283 Srcs: srcs,
336 return i.properties.Srcs, i.properties.Local_include_dir
/aosp12/build/soong/genrule/
H A Dgenrule.go143 Srcs []string `android:"path,arch_variant"` member
202 func (g *Module) Srcs() android.Paths { func
359 for _, in := range g.properties.Srcs {
570 dpInfo.Srcs = append(dpInfo.Srcs, g.Srcs().Strings()...)
571 for _, src := range g.properties.Srcs {
807 Srcs bazel.LabelListAttribute member
842 srcs := bazel.MakeLabelListAttribute(android.BazelLabelForModuleSrc(ctx, m.properties.Srcs))
880 Srcs: srcs,
/aosp12/build/soong/python/
H A Dbinary.go39 Srcs bazel.LabelListAttribute member
100 srcs := android.BazelLabelForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs)
105 Srcs: bazel.MakeLabelListAttribute(srcs),
/aosp12/build/soong/java/
H A Djdeps_test.go58 if !reflect.DeepEqual(dpInfo.Srcs, expected) {
59 t.Errorf("Library.IDEInfo() Srcs = %v, want %v", dpInfo.Srcs, expected)

123