Home
last modified time | relevance | path

Searched refs:blueprint (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/build/soong/android/
Dbase_module_context.go34 blueprintBaseModuleContext() blueprint.BaseModuleContext
38 OtherModuleName(m blueprint.Module) string
42 OtherModuleDir(m blueprint.Module) string
46 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
51 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
62 OtherModuleDependencyVariantExists(variations []blueprint.Variation, name string) bool
69 OtherModuleFarDependencyVariantExists(variations []blueprint.Variation, name string) bool
79 OtherModuleType(m blueprint.Module) string
86 otherModuleProvider(m blueprint.Module, provider blueprint.AnyProviderKey) (any, bool)
94 provider(provider blueprint.AnyProviderKey) (any, bool)
[all …]
Ddefs.go32 blueprint.RuleParams{
41 blueprint.RuleParams{
49 blueprint.RuleParams{
57 blueprint.RuleParams{
65 blueprint.RuleParams{
72 blueprint.RuleParams{
80 blueprint.RuleParams{
87 blueprint.RuleParams{
94 blueprint.RuleParams{
101 blueprint.RuleParams{
[all …]
Dprovider.go10 otherModuleProvider(m blueprint.Module, provider blueprint.AnyProviderKey) (any, bool)
24 …uleProvider[K any](ctx OtherModuleProviderContext, module blueprint.Module, provider blueprint.Pro…
36 provider(provider blueprint.AnyProviderKey) (any, bool)
50 func ModuleProvider[K any](ctx ModuleProviderContext, provider blueprint.ProviderKey[K]) (K, bool) {
60 moduleProvider(blueprint.Module, blueprint.AnyProviderKey) (any, bool)
70 …rovider[K any](ctx SingletonModuleProviderContext, module blueprint.Module, provider blueprint.Pro…
82 setProvider(provider blueprint.AnyProviderKey, value any)
97 func SetProvider[K any](ctx SetProviderContext, provider blueprint.ProviderKey[K], value K) {
105 type OtherModuleProviderFunc func(module blueprint.Module, provider blueprint.AnyProviderKey) (any,…
111 …p *otherModuleProviderAdaptor) otherModuleProvider(module blueprint.Module, provider blueprint.Any…
Dpackage_ctx.go30 blueprint.PackageContext
34 return PackageContext{blueprint.NewPackageContext(pkgPath)}
67 blueprint.VariableFuncContext
85 f func(PackageVarContext) string) blueprint.Variable {
87 …return p.PackageContext.VariableFunc(name, func(bpctx blueprint.VariableFuncContext, config interf…
103 f func(PackagePoolContext) blueprint.PoolParams) blueprint.Pool {
105 return p.PackageContext.PoolFunc(name, func(config interface{}) (blueprint.PoolParams, error) {
119 f func(PackageRuleContext) blueprint.RuleParams, argNames ...string) blueprint.Rule {
121 return p.PackageContext.RuleFunc(name, func(config interface{}) (blueprint.RuleParams, error) {
140 func (p PackageContext) SourcePathVariable(name, path string) blueprint.Variable {
[all …]
Dsingleton.go23 blueprintSingletonContext() blueprint.SingletonContext
28 ModuleName(module blueprint.Module) string
29 ModuleDir(module blueprint.Module) string
30 ModuleSubDir(module blueprint.Module) string
31 ModuleType(module blueprint.Module) string
32 BlueprintFile(module blueprint.Module) string
38 moduleProvider(module blueprint.Module, provider blueprint.AnyProviderKey) (any, bool)
40 ModuleErrorf(module blueprint.Module, format string, args ...interface{})
45 …Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.…
65 VisitAllModulesBlueprint(visit func(blueprint.Module))
[all …]
Dmutator.go70 BottomUpBlueprint(name string, m blueprint.BottomUpMutator) MutatorHandle
209 bp blueprint.TopDownMutatorContext
225 …AddDependency(module blueprint.Module, tag blueprint.DependencyTag, name ...string) []blueprint.Mo…
232 AddReverseDependency(module blueprint.Module, tag blueprint.DependencyTag, name string)
273 …ddVariationDependencies(variations []blueprint.Variation, tag blueprint.DependencyTag, names ...st…
288 …AddFarVariationDependencies([]blueprint.Variation, blueprint.DependencyTag, ...string) []blueprint
294 AddInterVariantDependency(tag blueprint.DependencyTag, from, to blueprint.Module)
305 ReplaceDependenciesIf(string, blueprint.ReplaceDependencyPredicate)
329 SetVariationProvider(module blueprint.Module, provider blueprint.AnyProviderKey, value interface{})
352 bp blueprint.BottomUpMutatorContext
[all …]
Dnamespace.go195 …solver) NewModule(ctx blueprint.NamespaceContext, moduleGroup blueprint.ModuleGroup, module bluepr…
228 func (r *NameResolver) NewSkippedModule(ctx blueprint.NamespaceContext, name string, skipInfo bluep…
232 func (r *NameResolver) AllModules() []blueprint.ModuleGroup {
233 childLists := [][]blueprint.ModuleGroup{}
241 allModules := make([]blueprint.ModuleGroup, 0, totalCount)
248 …er) SkippedModuleFromName(moduleName string, namespace blueprint.Namespace) (skipInfos []blueprint
267 func (r *NameResolver) getNamespacesToSearchForModule(sourceNamespace blueprint.Namespace) (searchO…
277 func (r *NameResolver) ModuleFromName(name string, namespace blueprint.Namespace) (group blueprint.…
283 return blueprint.ModuleGroup{}, false
294 return blueprint.ModuleGroup{}, false
[all …]
Dhooks.go41 registerScopedModuleType(name string, factory blueprint.ModuleFactory)
42 moduleFactories() map[string]blueprint.ModuleFactory
51 func AddLoadHook(m blueprint.Module, hook func(LoadHookContext)) {
52 blueprint.AddLoadHook(m, func(ctx blueprint.LoadHookContext) {
63 bp blueprint.LoadHookContext
67 func (l *loadHookContext) moduleFactories() map[string]blueprint.ModuleFactory {
92 …(l *loadHookContext) createModule(factory blueprint.ModuleFactory, name string, props ...interface…
98 createModule(blueprint.ModuleFactory, string, ...interface{}) blueprint.Module
138 func (l *loadHookContext) registerScopedModuleType(name string, factory blueprint.ModuleFactory) {
152 func AddInstallHook(m blueprint.Module, hook func(InstallHookContext)) {
Dfilegroup.go75 var _ blueprint.JSONActionSupplier = (*fileGroup)(nil)
77 func (fg *fileGroup) JSONActions() []blueprint.JSONAction {
84 return []blueprint.JSONAction{
85 blueprint.JSONAction{
97 …SetProvider(ctx, blueprint.SrcsFileProviderKey, blueprint.SrcsFileProviderData{SrcPaths: fg.srcs.S…
/build/blueprint/tests/
Dtest.sh10 ./blueprint.bash
12 if [[ -d .bootstrap/blueprint/test ]]; then
19 ./blueprint.bash
21 if [[ ! -d .bootstrap/blueprint/test ]]; then
28 ./blueprint.bash
30 if [[ -d .bootstrap/blueprint/test ]]; then
Dtest_tree_tests.sh11 export TEMPDIR=$(mktemp -d -t blueprint.test.XXX)
28 export BLUEPRINTDIR=${SRCDIR}/blueprint
30 ${SRCDIR}/blueprint/bootstrap.bash $@
33 ./blueprint.bash
39 ./blueprint.bash
55 ./blueprint.bash
70 ./blueprint.bash
87 ./blueprint.bash
104 ./blueprint.bash
/build/blueprint/
DAndroid.bp32 name: "blueprint",
34 "blueprint-metrics",
35 "blueprint-parser",
36 "blueprint-pathtools",
37 "blueprint-proptools",
39 pkgPath: "github.com/google/blueprint",
73 name: "blueprint-parser",
74 pkgPath: "github.com/google/blueprint/parser",
91 name: "blueprint-deptools",
92 pkgPath: "github.com/google/blueprint/deptools",
[all …]
/build/blueprint/bootstrap/
Dbootstrap.go30 pctx = blueprint.NewPackageContext("github.com/google/blueprint/bootstrap")
49 blueprint.RuleParams{
60 blueprint.RuleParams{
70 blueprint.RuleParams{
78 blueprint.RuleParams{
86 blueprint.RuleParams{
94 blueprint.RuleParams{
101 blueprint.RuleParams{
109 blueprint.RuleParams{
116 blueprint.RuleParams{
[all …]
Dcommand.go49 func RegisterGoModuleTypes(ctx *blueprint.Context) {
58 func RunBlueprint(args Args, stopBefore StopBefore, ctx *blueprint.Context, config interface{}) ([]…
66 f, err := os.Create(blueprint.JoinPath(ctx.SrcDir(), args.Cpuprofile))
76 f, err := os.Create(blueprint.JoinPath(ctx.SrcDir(), args.TraceFile))
153 var out blueprint.StringWriterWriter
160 …if err := os.WriteFile(blueprint.JoinPath(ctx.SrcDir(), args.OutFile), []byte(nil), blueprint.OutF…
163 out = io.Discard.(blueprint.StringWriterWriter)
165 …f, err := os.OpenFile(blueprint.JoinPath(ctx.SrcDir(), args.OutFile), os.O_WRONLY|os.O_CREATE|os.O…
196 f, err := os.Create(blueprint.JoinPath(ctx.SrcDir(), args.Memprofile))
213 case *blueprint.BlueprintError,
[all …]
Dglob.go47 …_ = pctx.VariableFunc("globCmd", func(ctx blueprint.VariableFuncContext, config interface{}) (stri…
54 blueprint.RuleParams{
60 Deps: blueprint.DepsGCC,
69 Build(pctx blueprint.PackageContext, params blueprint.BuildParams)
81 ctx.Build(pctx, blueprint.BuildParams{
112 ctx.Build(pctx, blueprint.BuildParams{
175 func (s *GlobSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
199 absoluteFileListFile := blueprint.JoinPath(s.SrcDir, fileListFile)
220 err := ioutil.WriteFile(blueprint.JoinPath(glob.SrcDir, glob.GlobFile), buffer, outFilePermissions)
230 ctx := blueprint.NewContext()
[all …]
/build/soong/bazel/
Dtesting.go37 func (mi TestModuleInfo) GenerateBuildActions(blueprint.ModuleContext) {}
44 var _ blueprint.Module = TestModuleInfo{}
53 func (omc *OtherModuleTestContext) ModuleFromName(name string) (blueprint.Module, bool) {
63 func (omc *OtherModuleTestContext) testModuleInfo(m blueprint.Module) (TestModuleInfo, bool) {
77 func (omc *OtherModuleTestContext) OtherModuleType(m blueprint.Module) string {
85 func (omc *OtherModuleTestContext) OtherModuleName(m blueprint.Module) string {
93 func (omc *OtherModuleTestContext) OtherModuleDir(m blueprint.Module) string {
/build/soong/tradefed/
DAndroid.bp9 "blueprint",
25 "blueprint",
26 "blueprint-pathtools",
27 "blueprint-proptools",
/build/soong/cc/
Dlinkable.go63 type SantizableDependencyTagChecker func(tag blueprint.DependencyTag) bool
280 func DepTagMakeSuffix(depTag blueprint.DependencyTag) string {
288 func SharedDepTag() blueprint.DependencyTag {
293 func StaticDepTag(wholeStatic bool) blueprint.DependencyTag {
298 func IsWholeStaticLib(depTag blueprint.DependencyTag) bool {
306 func HeaderDepTag() blueprint.DependencyTag {
321 var SharedLibraryInfoProvider = blueprint.NewProvider[SharedLibraryInfo]()
344 var SharedLibraryStubsProvider = blueprint.NewProvider[SharedLibraryStubsInfo]()
363 var StaticLibraryInfoProvider = blueprint.NewProvider[StaticLibraryInfo]()
370 var HeaderLibraryInfoProvider = blueprint.NewProvider[HeaderLibraryInfo]()
[all …]
/build/soong/android/soongconfig/
DAndroid.bp9 "blueprint",
10 "blueprint-parser",
11 "blueprint-proptools",
/build/make/tools/compliance/
Dgo.work5 ../../../../build/blueprint
13 github.com/google/blueprint v0.0.0 => ../../../../build/blueprint
/build/soong/dexpreopt/dexpreopt_gen/
DAndroid.bp12 "blueprint-pathtools",
13 "blueprint-proptools",
/build/soong/aconfig/
Dinit.go28 blueprint.RuleParams{
46 blueprint.RuleParams{
59 blueprint.RuleParams{
66 blueprint.RuleParams{
74 blueprint.RuleParams{
89 blueprint.RuleParams{
/build/soong/aconfig/build_flags/
Dinit.go28 blueprint.RuleParams{
41 blueprint.RuleParams{
54 blueprint.RuleParams{
62 blueprint.RuleParams{
/build/soong/java/
Dbootclasspath.go55 …mUpMutatorContext, propertyName string, refs []ApexVariantReference, tag blueprint.DependencyTag) {
78 …lePair(ctx android.BottomUpMutatorContext, apex string, name string, tag blueprint.DependencyTag) {
79 var variations []blueprint.Variation
82 variations = []blueprint.Variation{
122 func reportMissingVariationDependency(ctx android.BottomUpMutatorContext, variations []blueprint.Va…
128 func gatherApexModulePairDepsWithTag(ctx android.BaseModuleContext, tag blueprint.DependencyTag) []…
175 blueprint.BaseDependencyTag
/build/soong/xml/
DAndroid.bp9 "blueprint",
10 "blueprint-pathtools",

12345678910>>...12