/build/soong/cc/ |
D | linker.go | 294 func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { 295 deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...) 296 deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...) 297 deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...) 298 deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...) 299 deps.RuntimeLibs = append(deps.RuntimeLibs, linker.Properties.Runtime_libs...) 301 …deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, linker.Properties.Export_hea… 302 …deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, linker.Properties.Export_sta… 303 …deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, linker.Properties.Export_sha… 304 …deps.ReexportGeneratedHeaders = append(deps.ReexportGeneratedHeaders, linker.Properties.Export_gen… [all …]
|
D | stl.go | 140 func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps { func 146 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl) 148 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl) 157 deps.StaticLibs = append(deps.StaticLibs, "libc++demangle") 161 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc", staticUnwinder(ctx)) 163 deps.StaticUnwinderIfLegacy = true 169 deps.StaticUnwinderIfLegacy = true 175 deps.SharedLibs = append([]string{"libstdc++"}, deps.SharedLibs...) 178 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl) 180 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi") [all …]
|
D | object.go | 150 var deps bazel.LabelListAttribute 162 deps.SetSelectValue(axis, config, android.BazelLabelForModuleDeps(ctx, objectLinkerProps.Objs)) 171 deps.ResolveExcludes() 187 Deps: deps, 216 func (object *objectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { 217 deps.HeaderLibs = append(deps.HeaderLibs, object.Properties.Header_libs...) 218 deps.SharedLibs = append(deps.SharedLibs, object.Properties.Shared_libs...) 219 deps.StaticLibs = append(deps.StaticLibs, object.Properties.Static_libs...) 220 deps.ObjFiles = append(deps.ObjFiles, object.Properties.Objs...) 222 deps.SystemSharedLibs = object.Properties.System_shared_libs [all …]
|
D | binary.go | 150 func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { 151 deps = binary.baseLinker.linkerDeps(ctx, deps) 154 deps.CrtBegin = ctx.toolchain().CrtBeginStaticBinary() 155 deps.CrtEnd = ctx.toolchain().CrtEndStaticBinary() 157 deps.CrtBegin = ctx.toolchain().CrtBeginSharedBinary() 158 deps.CrtEnd = ctx.toolchain().CrtEndSharedBinary() 163 deps.StaticLibs = append(deps.StaticLibs, deps.SystemSharedLibs...) 169 deps.StaticLibs = append(deps.StaticLibs, "libm", "libc") 175 deps.StaticLibs, groupLibs = filterList(deps.StaticLibs, 177 deps.LateStaticLibs = append(groupLibs, deps.LateStaticLibs...) [all …]
|
/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/android/ |
D | packaging_test.go | 140 deps: ["foo"], 148 deps: ["bar"], 157 deps: ["foo"], 165 deps: ["bar"], 174 deps: ["foo"], 192 deps: ["foo"], 195 deps: ["bar"], 214 deps: ["foo"], 217 deps: ["bar"], 240 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
|
/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 | binary.go | 92 func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 93 deps = binary.baseCompiler.compilerDeps(ctx, deps) 97 deps = bionicDeps(ctx, deps, static) 99 deps.CrtBegin = []string{"crtbegin_static"} 101 deps.CrtBegin = []string{"crtbegin_dynamic"} 103 deps.CrtEnd = []string{"crtend_android"} 105 deps = muslDeps(ctx, deps, static) 107 deps.CrtBegin = []string{"libc_musl_crtbegin_static"} 109 deps.CrtBegin = []string{"libc_musl_crtbegin_dynamic", "musl_linker_script"} 111 deps.CrtEnd = []string{"libc_musl_crtend"} [all …]
|
D | compiler.go | 327 func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) android.Path { 332 deps PathDeps) android.OptionalPath { 361 func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps { 362 deps.Rlibs = append(deps.Rlibs, compiler.Properties.Rlibs...) 363 deps.Dylibs = append(deps.Dylibs, compiler.Properties.Dylibs...) 364 deps.Rustlibs = append(deps.Rustlibs, compiler.Properties.Rustlibs...) 365 deps.ProcMacros = append(deps.ProcMacros, compiler.Properties.Proc_macros...) 366 deps.StaticLibs = append(deps.StaticLibs, compiler.Properties.Static_libs...) 367 deps.WholeStaticLibs = append(deps.WholeStaticLibs, compiler.Properties.Whole_static_libs...) 368 deps.SharedLibs = append(deps.SharedLibs, compiler.Properties.Shared_libs...) [all …]
|
D | coverage.go | 39 func (cov *coverage) deps(ctx DepsContext, deps Deps) Deps { func 46 return deps 49 func (cov *coverage) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) { 52 return flags, deps 62 deps.StaticLibs = append(deps.StaticLibs, coverage.OutputFile().Path()) 69 return flags, deps
|
D | bindgen.go | 132 func (b *bindgenDecorator) GenerateSource(ctx ModuleContext, deps PathDeps) android.Path { 138 implicits = append(implicits, deps.depGeneratedHeaders...) 177 cflags = append(cflags, deps.depClangFlags...) 178 for _, include := range deps.depIncludePaths { 181 for _, include := range deps.depSystemIncludePaths { 287 func (b *bindgenDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps { 288 deps = b.BaseSourceProvider.SourceProviderDeps(ctx, deps) 290 deps = bionicDeps(ctx, deps, false) 292 deps = muslDeps(ctx, deps, false) 295 deps.SharedLibs = append(deps.SharedLibs, b.ClangProperties.Shared_libs...) [all …]
|
D | afdo.go | 33 func (afdo *afdo) flags(ctx ModuleContext, flags Flags, deps PathDeps) (Flags, PathDeps) { 35 return flags, deps 44 deps.AfdoProfiles = append(deps.AfdoProfiles, profileFilePath) 47 return flags, deps
|
D | benchmark.go | 101 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
|
D | protobuf.go | 68 func (proto *protobufDecorator) GenerateSource(ctx ModuleContext, deps PathDeps) android.Path { 106 for _, include := range deps.depIncludePaths { 207 func (proto *protobufDecorator) SourceProviderDeps(ctx DepsContext, deps Deps) Deps { 208 deps = proto.BaseSourceProvider.SourceProviderDeps(ctx, deps) 209 deps.Rustlibs = append(deps.Rustlibs, "libprotobuf") 210 deps.HeaderLibs = append(deps.SharedLibs, proto.Properties.Header_libs...) 213 deps.Rustlibs = append(deps.Rustlibs, "libgrpcio", "libfutures") 214 deps.HeaderLibs = append(deps.HeaderLibs, "libprotobuf-cpp-full") 217 return deps
|
/build/bazel/rules/java/ |
D | proto.bzl | 33 for dep in ctx.attr.deps: 52 "deps": attr.label_list( 97 deps = [], 106 deps = deps, 112 deps = [proto_dep] 114 deps = [] 119 deps = deps, 125 deps = [], 130 deps = deps, 138 deps = [], [all …]
|
/build/soong/java/ |
D | builder.go | 286 srcFiles, srcJars android.Paths, flags javaBuilderFlags, deps android.Paths) { 294 transformJavaToClasses(ctx, outputFile, shardIdx, srcFiles, srcJars, flags, deps, "javac", desc) 301 flags javaBuilderFlags, deps android.Paths) { 303 deps = append(deps, srcJars...) 310 deps = append(deps, systemModuleDeps...) 313 deps = append(deps, flags.bootClasspath...) 323 deps = append(deps, classpath...) 324 deps = append(deps, flags.processorPath...) 342 Implicits: deps, 359 var deps android.Paths [all …]
|
D | kotlin.go | 88 var deps android.Paths 89 deps = append(deps, flags.kotlincClasspath...) 90 deps = append(deps, flags.kotlincDeps...) 91 deps = append(deps, srcJars...) 92 deps = append(deps, commonSrcFiles...) 100 deps = append(deps, commonSrcsList.Path()) 110 Implicits: deps, 175 var deps android.Paths 176 deps = append(deps, flags.kotlincClasspath...) 177 deps = append(deps, flags.kotlincDeps...) [all …]
|
D | base.go | 676 func (j *Module) deps(ctx android.BottomUpMutatorContext) { func 678 j.linter.deps(ctx) 807 var deps android.Paths 813 deps = append(deps, aidlPreprocess.Path()) 847 return strings.Join(flags, " "), deps 850 func (j *Module) collectBuilderFlags(ctx android.ModuleContext, deps deps) javaBuilderFlags { 875 flags.bootClasspath = append(flags.bootClasspath, deps.bootClasspath...) 876 flags.classpath = append(flags.classpath, deps.classpath...) 877 flags.dexClasspath = append(flags.dexClasspath, deps.dexClasspath...) 878 flags.java9Classpath = append(flags.java9Classpath, deps.java9Classpath...) [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) 111 args["implicits"] = strings.Join(deps.Strings(), ",") 119 Implicits: deps, 140 deps := android.Paths{manifest, rTxt} 143 deps = append(deps, classesJar) 150 Implicits: deps, [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 …]
|
/build/blueprint/bpmodify/ |
D | bpmodify_test.go | 46 deps: ["bar"], 57 deps: ["bar"], 63 deps: [], 81 deps: [ 98 deps: [ 111 deps: [ 127 deps: [ 140 deps: [ 158 deps: [ 171 deps: [ [all …]
|
/build/bazel/examples/android_app/java/com/app/ |
D | BUILD | 9 deps = [ 18 deps = [ 27 deps = [ 40 deps = [ 54 deps = [":jni_dep"], 61 deps = ["//libnativehelper:jni_headers"],
|