/build/soong/cc/ |
D | linker.go | 217 func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { 218 deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...) 219 deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...) 220 deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...) 221 deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...) 222 deps.RuntimeLibs = append(deps.RuntimeLibs, linker.Properties.Runtime_libs...) 224 …deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, linker.Properties.Export_hea… 225 …deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, linker.Properties.Export_sta… 226 …deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, linker.Properties.Export_sha… 227 …deps.ReexportGeneratedHeaders = append(deps.ReexportGeneratedHeaders, linker.Properties.Export_gen… [all …]
|
D | stl.go | 166 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func 172 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl) 174 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl) 183 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle") 187 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx)) 189 deps.StaticUnwinderIfLegacy = true 195 deps.StaticUnwinderIfLegacy = true 201 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...) 204 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl) 206 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi") [all …]
|
D | binary.go | 129 func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { 130 deps = binary.baseLinker.linkerDeps(ctx, deps) 135 deps.CrtBegin = "crtbegin_static" 137 deps.CrtBegin = "crtbegin_dynamic" 139 deps.CrtEnd = "crtend_android" 151 deps.CrtBegin = "ndk_crtbegin_static." + version 154 deps.CrtBegin = "ndk_crtbegin_static." + version 156 deps.CrtBegin = "ndk_crtbegin_dynamic." + version 158 deps.CrtEnd = "ndk_crtend_android." + version 165 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc") [all …]
|
D | library.go | 242 deps android.Paths member 281 func (f *flagExporter) reexportDeps(deps ...android.Path) { 282 f.deps = append(f.deps, deps...) 304 return f.deps 541 func (library *libraryDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags… 549 flags = library.baseCompiler.compilerFlags(ctx, flags, deps) 629 func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { 658 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + 664 objs := library.baseCompiler.compile(ctx, flags, deps) 769 func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { [all …]
|
D | vendor_public_library.go | 100 func (stub *vendorPublicLibraryStubDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps Pa… 101 flags = stub.baseCompiler.compilerFlags(ctx, flags, deps) 105 func (stub *vendorPublicLibraryStubDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps… 111 func (stub *vendorPublicLibraryStubDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { 113 deps.HeaderLibs = append(deps.HeaderLibs, headers...) 114 deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, headers...) 115 return deps 123 func (stub *vendorPublicLibraryStubDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, 130 return stub.libraryDecorator.link(ctx, flags, deps, objs)
|
D | test.go | 255 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps { 258 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++") 260 deps.StaticLibs = append(deps.StaticLibs, "libgtest_isolated_main") 265 deps.SharedLibs = append(deps.SharedLibs, "liblog") 267 deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest") 271 return deps 319 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { 320 deps = test.testDecorator.linkerDeps(ctx, deps) 321 deps = test.binaryDecorator.linkerDeps(ctx, deps) 322 return deps [all …]
|
D | object.go | 94 func (object *objectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { 97 deps.LateSharedLibs = append(deps.LateSharedLibs, "libc") 100 deps.HeaderLibs = append(deps.HeaderLibs, object.Properties.Header_libs...) 101 deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...) 102 return deps 116 flags Flags, deps PathDeps, objs Objects) android.Path { 118 objs = objs.Append(deps.Objs)
|
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
|
D | gen.go | 212 var deps android.Paths 230 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cFile, buildFlags.yacc)...) 234 deps = append(deps, genYacc(ctx, yaccRule(), srcFile, cppFile, buildFlags.yacc)...) 246 deps = append(deps, headerFile) 254 deps = append(deps, genAidl(ctx, aidlRule, srcFile, cppFile, depFile, buildFlags.aidlFlags)...) 262 deps = append(deps, headerFile) 266 deps = append(deps, headerFiles...) 279 deps = append(deps, rsGenerateCpp(ctx, rsFiles, buildFlags.rsFlags)...) 282 return srcFiles, deps
|
D | llndk_library.go | 79 func (stub *llndkStubDecorator) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags { 80 flags = stub.baseCompiler.compilerFlags(ctx, flags, deps) 84 func (stub *llndkStubDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects { 98 func (stub *llndkStubDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { 100 deps.HeaderLibs = append(deps.HeaderLibs, headers...) 101 deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, headers...) 102 return deps 135 func (stub *llndkStubDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, 170 return stub.libraryDecorator.link(ctx, flags, deps, objs)
|
/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 | 45 func TransformSrcToBinary(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Fla… 49 transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "bin", includeDirs) 52 func TransformSrctoRlib(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, 54 transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "rlib", includeDirs) 57 func TransformSrctoDylib(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flag… 59 transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "dylib", includeDirs) 62 func TransformSrctoStatic(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Fla… 65 transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "staticlib", includeDirs) 68 func TransformSrctoShared(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Fla… 71 transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "cdylib", includeDirs) [all …]
|
D | compiler.go | 173 func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { 177 func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps { 178 deps.Rlibs = append(deps.Rlibs, compiler.Properties.Rlibs...) 179 deps.Dylibs = append(deps.Dylibs, compiler.Properties.Dylibs...) 180 deps.ProcMacros = append(deps.ProcMacros, compiler.Properties.Proc_macros...) 181 deps.StaticLibs = append(deps.StaticLibs, compiler.Properties.Static_libs...) 182 deps.SharedLibs = append(deps.SharedLibs, compiler.Properties.Shared_libs...) 195 if (len(deps.Dylibs) > 0) || (!ctx.Host()) { 197 deps.Dylibs = append(deps.Dylibs, stdlib) 201 return deps [all …]
|
D | binary.go | 90 func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 91 deps = binary.baseCompiler.compilerDeps(ctx, deps) 94 deps = binary.baseCompiler.bionicDeps(ctx, deps) 95 deps.CrtBegin = "crtbegin_dynamic" 96 deps.CrtEnd = "crtend_android" 99 return deps 107 func (binary *binaryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { 115 flags.RustFlags = append(flags.RustFlags, deps.depFlags...) 117 TransformSrcToBinary(ctx, srcPath, deps, flags, outputFile, deps.linkDirs)
|
D | library.go | 307 func (library *libraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 313 deps.Rlibs = append(deps.Rlibs, stdlib+".static") 317 deps = library.baseCompiler.compilerDeps(ctx, deps) 320 deps = library.baseCompiler.bionicDeps(ctx, deps) 323 return deps 334 func (library *libraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Pat… 339 flags.RustFlags = append(flags.RustFlags, deps.depFlags...) 352 TransformSrctoRlib(ctx, srcPath, deps, flags, outputFile, deps.linkDirs) 357 TransformSrctoDylib(ctx, srcPath, deps, flags, outputFile, deps.linkDirs) 362 TransformSrctoStatic(ctx, srcPath, deps, flags, outputFile, deps.linkDirs) [all …]
|
D | prebuilt.go | 60 func (prebuilt *prebuiltLibraryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) an… 68 func (prebuilt *prebuiltLibraryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 69 deps = prebuilt.baseCompiler.compilerDeps(ctx, deps) 70 return deps
|
D | rust.go | 241 compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path 242 compilerDeps(ctx DepsContext, deps Deps) Deps 504 deps := mod.depsToPaths(ctx) 511 outputFile := mod.compiler.compile(ctx, flags, deps) 517 func (mod *Module) deps(ctx DepsContext) Deps { func 518 deps := Deps{} 521 deps = mod.compiler.compilerDeps(ctx, deps) 524 deps.Rlibs = android.LastUniqueStrings(deps.Rlibs) 525 deps.Dylibs = android.LastUniqueStrings(deps.Dylibs) 526 deps.ProcMacros = android.LastUniqueStrings(deps.ProcMacros) [all …]
|
/build/soong/android/ |
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 …]
|
/build/soong/java/ |
D | builder.go | 262 srcFiles, srcJars android.Paths, flags javaBuilderFlags, deps android.Paths) { 270 transformJavaToClasses(ctx, outputFile, shardIdx, srcFiles, srcJars, flags, deps, "javac", desc) 294 flags javaBuilderFlags, deps android.Paths) { 296 deps = append(deps, srcJars...) 303 deps = append(deps, systemModuleDeps...) 306 deps = append(deps, flags.bootClasspath...) 316 deps = append(deps, classpath...) 317 deps = append(deps, flags.processorPath...) 335 Implicits: deps, 354 var deps android.Paths [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 | kotlin.go | 63 var deps android.Paths 64 deps = append(deps, flags.kotlincClasspath...) 65 deps = append(deps, srcJars...) 75 Implicits: deps, 134 var deps android.Paths 135 deps = append(deps, flags.kotlincClasspath...) 136 deps = append(deps, srcJars...) 137 deps = append(deps, flags.processorPath...) 163 Implicits: deps,
|
/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/make/core/tasks/ |
D | deps_licenses.mk | 24 ifneq (,$(filter deps-license,$(MAKECMDGOALS))) 42 define print-deps-license 46 $(eval deps :=)\ 47 $(eval $(call get-module-all-dependencies,deps,$(m)))\ 49 $(foreach d,$(deps),\ 55 .PHONY: deps-license 56 deps-license: 57 @$(call print-deps-license)
|
/build/blueprint/ |
D | context_test.go | 149 deps: ["MyBarModule"], 187 deps: ["B", "C"], 192 deps: ["D"], 197 deps: ["E", "F"], 206 deps: ["G"], 211 deps: ["G"], 263 deps: ["B", "C"], 268 deps: ["D"], 273 deps: ["E", "F"], 282 deps: ["G"], [all …]
|