Home
last modified time | relevance | path

Searched refs:deps (Results 1 – 25 of 195) sorted by relevance

12345678

/build/soong/cc/
Dlinker.go250 func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
251 deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...)
252 deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...)
253 deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...)
254 deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...)
255 deps.RuntimeLibs = append(deps.RuntimeLibs, linker.Properties.Runtime_libs...)
257deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, linker.Properties.Export_hea…
258deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, linker.Properties.Export_sta…
259deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, linker.Properties.Export_sha…
260deps.ReexportGeneratedHeaders = append(deps.ReexportGeneratedHeaders, linker.Properties.Export_gen…
[all …]
Dstl.go159 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func
165 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
167 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl)
176 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle")
180 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx))
182 deps.StaticUnwinderIfLegacy = true
188 deps.StaticUnwinderIfLegacy = true
194 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...)
197 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
199 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi")
[all …]
Dbinary.go147 func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps {
148 deps = binary.baseLinker.linkerDeps(ctx, deps)
152 deps.CrtBegin = "crtbegin_static"
154 deps.CrtBegin = "crtbegin_dynamic"
156 deps.CrtEnd = "crtend_android"
161 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc")
167 deps.StaticLibs, groupLibs = filterList(deps.StaticLibs,
169 deps.LateStaticLibs = append(groupLibs, deps.LateStaticLibs...)
180 deps.DynamicLinker = "linker"
181 deps.LinkerFlagsFile = "host_bionic_linker_flags"
[all …]
Dlibrary.go295 Deps: linkerAttrs.deps,
381 deps android.Paths member
435 func (f *flagExporter) reexportDeps(deps ...android.Path) {
436 f.deps = append(f.deps, deps...)
455 Deps: f.deps,
665 …for _, header := range append(android.CopyOfPaths(l.flagExporter.headers), l.flagExporter.deps...)…
762 func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags…
770 flags = library.baseCompiler.compilerFlags(ctx, flags, deps)
809 func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
866 totalLength := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) +
[all …]
Dtest.go281 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
284 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++")
286 deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main")
291 deps.SharedLibs = append(deps.SharedLibs, "liblog")
293 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest")
297 return deps
346 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps {
347 deps = test.testDecorator.linkerDeps(ctx, deps)
348 deps = test.binaryDecorator.linkerDeps(ctx, deps)
349 deps.DataLibs = append(deps.DataLibs, test.Properties.Data_libs...)
[all …]
Dproto.go62 func protoDeps(ctx DepsContext, deps Deps, p *android.ProtoProperties, static bool) Deps {
105 deps.StaticLibs = append(deps.StaticLibs, lib)
106 deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, lib)
108 deps.SharedLibs = append(deps.SharedLibs, lib)
109 deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, lib)
113 return deps
/build/blueprint/pathtools/
Dglob_test.go31 deps []string member
40 deps: []string{"."},
45 deps: []string{"."},
50 deps: []string{".", "a", "b", "c"},
55 deps: []string{".", "a", "b", "c", "a/a", "a/b", "c/f", "c/g", "c/h"},
60 deps: []string{".", "a", "b", "c", "a/a"},
65 deps: []string{"c", "c/f", "c/g", "c/h"},
70 deps: []string{"c", "c/f", "c/g", "c/h"},
75 deps: []string{"c", "c/f", "c/g", "c/h"},
80 deps: []string{"c", "c/f", "c/g", "c/h"},
[all …]
/build/soong/rust/
Dbuilder.go96 func TransformSrcToBinary(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
100 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "bin")
103 func TransformSrctoRlib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
105 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "rlib")
108 func TransformSrctoDylib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
110 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "dylib")
113 func TransformSrctoStatic(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
116 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "staticlib")
119 func TransformSrctoShared(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
122 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "cdylib")
[all …]
Dcompiler.go274 func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path {
279 deps PathDeps) android.OptionalPath {
300 func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
301 deps.Rlibs = append(deps.Rlibs, compiler.Properties.Rlibs...)
302 deps.Dylibs = append(deps.Dylibs, compiler.Properties.Dylibs...)
303 deps.Rustlibs = append(deps.Rustlibs, compiler.Properties.Rustlibs...)
304 deps.ProcMacros = append(deps.ProcMacros, compiler.Properties.Proc_macros...)
305 deps.StaticLibs = append(deps.StaticLibs, compiler.Properties.Static_libs...)
306 deps.WholeStaticLibs = append(deps.WholeStaticLibs, compiler.Properties.Whole_static_libs...)
307 deps.SharedLibs = append(deps.SharedLibs, compiler.Properties.Shared_libs...)
[all …]
Dcoverage.go38 func (cov *coverage) deps(ctx DepsContext, deps Deps) Deps { func
45 return deps
48 func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) {
51 return flags, deps
61 deps.StaticLibs = append(deps.StaticLibs, coverage.OutputFile().Path())
64 return flags, deps
Dbindgen.go131 func (b *bindgenDecorator) GenerateSource(ctx ModuleContext, deps PathDeps) android.Path {
137 implicits = append(implicits, deps.depGeneratedHeaders...)
151 cflags = append(cflags, deps.depClangFlags...)
152 for _, include := range deps.depIncludePaths {
155 for _, include := range deps.depSystemIncludePaths {
261 func (b *bindgenDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps {
262 deps = b.BaseSourceProvider.SourceProviderDeps(ctx, deps)
264 deps = bionicDeps(ctx, deps, false)
267 deps.SharedLibs = append(deps.SharedLibs, b.ClangProperties.Shared_libs...)
268 deps.StaticLibs = append(deps.StaticLibs, b.ClangProperties.Static_libs...)
[all …]
Dbenchmark.go101 func (benchmark *benchmarkDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
102 deps = benchmark.binaryDecorator.compilerDeps(ctx, deps)
104 deps.Rustlibs = append(deps.Rustlibs, "libtest")
105 deps.Rustlibs = append(deps.Rustlibs, "libcriterion")
107 return deps
Dprotobuf.go68 func (proto *protobufDecorator) GenerateSource(ctx ModuleContext, deps PathDeps) android.Path {
106 for _, include := range deps.depIncludePaths {
201 func (proto *protobufDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps {
202 deps = proto.BaseSourceProvider.SourceProviderDeps(ctx, deps)
203 deps.Rustlibs = append(deps.Rustlibs, "libprotobuf")
204 deps.HeaderLibs = append(deps.SharedLibs, proto.Properties.Header_libs...)
207 deps.Rustlibs = append(deps.Rustlibs, "libgrpcio", "libfutures")
208 deps.HeaderLibs = append(deps.HeaderLibs, "libprotobuf-cpp-full")
211 return deps
/build/soong/android/
Dpackaging_test.go135 deps: ["foo"],
143 deps: ["bar"],
152 deps: ["foo"],
160 deps: ["bar"],
169 deps: ["foo"],
187 deps: ["foo"],
190 deps: ["bar"],
209 deps: ["foo"],
212 deps: ["bar"],
235 deps: ["foo"],
[all …]
Dninja_deps.go19 func (c *config) addNinjaFileDeps(deps ...string) {
20 for _, dep := range deps {
26 var deps []string
28 deps = append(deps, key.(string))
31 sort.Strings(deps)
32 return deps
Dvisibility_test.go141 deps: ["libexample"],
146 deps: ["libexample"],
151 deps: ["libexample"],
168 deps: ["libexample"],
173 deps: ["libexample"],
178 deps: ["libexample"],
200 deps: ["libexample"],
205 deps: ["libexample"],
210 deps: ["libexample"],
233 deps: ["libexample"],
[all …]
Dwritedocs.go49 var deps Paths
50 deps = append(deps, pathForBuildToolDep(ctx, ctx.Config().moduleListFile))
51 deps = append(deps, pathForBuildToolDep(ctx, ctx.Config().ProductVariablesFileName))
57 deps = append(deps, dexpreoptConfigPath.Path())
81 Inputs: deps,
Dqueryview.go58 var deps Paths
60 deps = append(deps, moduleListFilePath)
61 deps = append(deps, pathForBuildToolDep(ctx, ctx.Config().ProductVariablesFileName))
96 Inputs: deps,
Dprebuilt_test.go203 deps: [":bar"],
238 deps: [":bar"],
268 deps: [":bar"],
309 deps: [":bar"],
351 deps := foo.Module().(*sourceModule).deps
353 if len(deps) > 0 {
354 t.Errorf("disabled module got deps: %v", deps)
357 if len(deps) != 1 {
358 t.Errorf("deps does not have single path, but is %v", deps)
363 if len(deps) > 0 && deps[0].String() == "source_file" {
[all …]
/build/soong/java/
Dkotlin.go82 var deps android.Paths
83 deps = append(deps, flags.kotlincClasspath...)
84 deps = append(deps, srcJars...)
85 deps = append(deps, commonSrcFiles...)
93 deps = append(deps, commonSrcsList.Path())
102 Implicits: deps,
166 var deps android.Paths
167 deps = append(deps, flags.kotlincClasspath...)
168 deps = append(deps, srcJars...)
169 deps = append(deps, flags.processorPath...)
[all …]
Dapp_builder.go55 …packageFile, jniJarFile, dexJarFile android.Path, certificates []Certificate, deps android.Paths, …
73 Implicits: deps,
82 var deps android.Paths
85 deps = append(deps, c.Pem, c.Key)
97 deps = append(deps, lineageFile)
107 args["implicits"] = strings.Join(deps.Strings(), ",")
115 Implicits: deps,
136 deps := android.Paths{manifest, rTxt}
139 deps = append(deps, classesJar)
146 Implicits: deps,
[all …]
Ddroiddoc.go277 func (j *Javadoc) collectAidlFlags(ctx android.ModuleContext, deps deps) droiddocBuilderFlags {
280 flags.aidlFlags, flags.aidlDeps = j.aidlFlags(ctx, deps.aidlPreprocess, deps.aidlIncludeDirs)
292 var deps android.Paths
296 deps = append(deps, aidlPreprocess.Path())
307 return strings.Join(flags, " "), deps
340 func (j *Javadoc) collectDeps(ctx android.ModuleContext) deps {
341 var deps deps
348 deps.bootClasspath = append(deps.bootClasspath, sdkDep.jars...)
349 deps.aidlPreprocess = sdkDep.aidl
351 deps.aidlPreprocess = sdkDep.aidl
[all …]
/build/make/tools/
Djava-layers.py55 def __init__(self, deps): argument
69 if upper in deps:
70 recurse(obj, deps[upper], visited)
71 self.deps = deps
72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
74 for dep in deps.itervalues():
77 for dep in deps.itervalues():
79 for d in deps.itervalues():
83 for dep in deps.itervalues():
85 for d in deps.itervalues():
[all …]
Dfilter-product-graph.py14 def gather(included, deps): argument
18 for d in deps:
24 deps = []
27 deps.append((m.group(1), m.group(2)))
53 included = gather(included, deps)
55 deps = [dep for dep in deps if dep[1] in included]
60 for dep in deps:
/build/blueprint/bpmodify/
Dbpmodify_test.go44 deps: ["bar"],
55 deps: ["bar"],
61 deps: [],
79 deps: [
96 deps: [
109 deps: [
125 deps: [
138 deps: [
156 deps: [
169 deps: [
[all …]

12345678