Searched refs:linkerDeps (Results 1 – 10 of 10) sorted by relevance
/build/soong/cc/ |
D | binary.go | 147 func (binary *binaryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { func 148 deps = binary.baseLinker.linkerDeps(ctx, deps) 346 var linkerDeps android.Paths 351 linkerDeps = append(linkerDeps, deps.LinkerFlagsFile.Path()) 422 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...) 423 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...) 424 linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...) 427 linkerDeps = append(linkerDeps, objs.tidyFiles...) 428 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...) 432 deps.LateStaticLibs, deps.WholeStaticLibs, linkerDeps, deps.CrtBegin, deps.CrtEnd, true,
|
D | test.go | 281 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps { func 346 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { func 347 deps = test.testDecorator.linkerDeps(ctx, deps) 348 deps = test.binaryDecorator.linkerDeps(ctx, deps) 494 func (test *testLibrary) linkerDeps(ctx DepsContext, deps Deps) Deps { func 495 deps = test.testDecorator.linkerDeps(ctx, deps) 496 deps = test.libraryDecorator.linkerDeps(ctx, deps) 568 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { func 569 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps)
|
D | library.go | 1018 func (library *libraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { func 1045 deps = library.baseLinker.linkerDeps(ctx, deps) 1185 var linkerDeps android.Paths 1186 linkerDeps = append(linkerDeps, flags.LdFlagsDeps...) 1204 linkerDeps = append(linkerDeps, unexportedSymbols.Path()) 1208 linkerDeps = append(linkerDeps, forceNotWeakSymbols.Path()) 1212 linkerDeps = append(linkerDeps, forceWeakSymbols.Path()) 1218 linkerDeps = append(linkerDeps, library.versionScriptPath.Path()) 1282 linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...) 1283 linkerDeps = append(linkerDeps, deps.SharedLibsDeps...) [all …]
|
D | ndk_prebuilt.go | 62 func (*ndkPrebuiltObjectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { func 107 func (*ndkPrebuiltStlLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { func
|
D | toolchain_library.go | 44 func (*toolchainLibraryDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { func
|
D | prebuilt.go | 87 func (p *prebuiltLibraryLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { func 88 return p.libraryDecorator.linkerDeps(ctx, deps)
|
D | fuzz.go | 117 func (fuzz *fuzzBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { func 120 deps = fuzz.binaryDecorator.linkerDeps(ctx, deps)
|
D | object.go | 212 func (object *objectLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { func
|
D | ndk_library.go | 276 func (linker *stubDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { func
|
D | linker.go | 250 func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { func
|