/build/soong/cc/ |
D | linker.go | 235 func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { 236 deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...) 237 deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...) 238 deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...) 239 deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...) 240 deps.RuntimeLibs = append(deps.RuntimeLibs, linker.Properties.Runtime_libs...) 242 …deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, linker.Properties.Export_hea… 243 …deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, linker.Properties.Export_sta… 244 …deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, linker.Properties.Export_sha… 245 …deps.ReexportGeneratedHeaders = append(deps.ReexportGeneratedHeaders, linker.Properties.Export_gen… [all …]
|
D | stl.go | 159 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 …]
|
D | binary.go | 147 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 …]
|
D | library.go | 295 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 …]
|
D | test.go | 281 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 …]
|
D | proto.go | 62 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/ |
D | glob_test.go | 31 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/ |
D | builder.go | 96 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 …]
|
D | compiler.go | 274 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 …]
|
D | binary.go | 86 func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 87 deps = binary.baseCompiler.compilerDeps(ctx, deps) 90 deps = bionicDeps(ctx, deps, Bool(binary.Properties.Static_executable)) 92 deps.CrtBegin = "crtbegin_static" 94 deps.CrtBegin = "crtbegin_dynamic" 96 deps.CrtEnd = "crtend_android" 99 return deps 116 func (binary *binaryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { 121 flags.RustFlags = append(flags.RustFlags, deps.depFlags...) 122 flags.LinkFlags = append(flags.LinkFlags, deps.depLinkFlags...) [all …]
|
D | coverage.go | 38 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
|
D | bindgen.go | 131 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 …]
|
D | protobuf.go | 68 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/ |
D | packaging_test.go | 135 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 …]
|
D | visibility_test.go | 141 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 …]
|
D | ninja_deps.go | 19 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
|
D | writedocs.go | 49 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,
|
/build/soong/java/ |
D | builder.go | 271 srcFiles, srcJars android.Paths, flags javaBuilderFlags, deps android.Paths) { 279 transformJavaToClasses(ctx, outputFile, shardIdx, srcFiles, srcJars, flags, deps, "javac", desc) 303 flags javaBuilderFlags, deps android.Paths) { 305 deps = append(deps, srcJars...) 312 deps = append(deps, systemModuleDeps...) 315 deps = append(deps, flags.bootClasspath...) 325 deps = append(deps, classpath...) 326 deps = append(deps, flags.processorPath...) 344 Implicits: deps, 363 var deps android.Paths [all …]
|
D | kotlin.go | 82 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 …]
|
D | app_builder.go | 55 …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 …]
|
D | base.go | 548 func (j *Module) deps(ctx android.BottomUpMutatorContext) { func 550 j.linter.deps(ctx) 662 var deps android.Paths 668 deps = append(deps, aidlPreprocess.Path()) 694 return strings.Join(flags, " "), deps 697 func (j *Module) collectBuilderFlags(ctx android.ModuleContext, deps deps) javaBuilderFlags { 721 flags.bootClasspath = append(flags.bootClasspath, deps.bootClasspath...) 722 flags.classpath = append(flags.classpath, deps.classpath...) 723 flags.java9Classpath = append(flags.java9Classpath, deps.java9Classpath...) 724 flags.processorPath = append(flags.processorPath, deps.processorPath...) [all …]
|
D | droiddoc.go | 277 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/ |
D | java-layers.py | 55 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 …]
|
D | filter-product-graph.py | 14 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/ |
D | bpmodify_test.go | 44 deps: ["bar"], 55 deps: ["bar"], 61 deps: [], 79 deps: [ 96 deps: [ 109 deps: [ 125 deps: [ 138 deps: [ 156 deps: [ 169 deps: [ [all …]
|