Searched refs:blueprint (Results 1 – 25 of 56) sorted by relevance
123
/build/soong/ |
D | build.ninja.in | 8 # bootstrap [from Go package github.com/google/blueprint/bootstrap] 66 # Module: blueprint 69 # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 70 # Defined: build/blueprint/Blueprints:1:1 73 ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a $ 74 : g.bootstrap.compile ${g.bootstrap.srcDir}/build/blueprint/context.go $ 75 ${g.bootstrap.srcDir}/build/blueprint/live_tracker.go $ 76 ${g.bootstrap.srcDir}/build/blueprint/mangle.go $ 77 ${g.bootstrap.srcDir}/build/blueprint/module_ctx.go $ 78 ${g.bootstrap.srcDir}/build/blueprint/ninja_defs.go $ [all …]
|
D | register.go | 21 factory blueprint.ModuleFactory 28 factory blueprint.SingletonFactory 35 bottomUpMutator blueprint.BottomUpMutator 36 topDownMutator blueprint.TopDownMutator 41 func RegisterModuleType(name string, factory blueprint.ModuleFactory) { 45 func RegisterSingletonType(name string, factory blueprint.SingletonFactory) { 49 func RegisterBottomUpMutator(name string, m blueprint.BottomUpMutator) { 53 func RegisterTopDownMutator(name string, m blueprint.TopDownMutator) { 57 func NewContext() *blueprint.Context { 58 ctx := blueprint.NewContext()
|
D | Android.bp | 16 "blueprint", 17 "blueprint-bootstrap", 61 "blueprint-deptools", 62 "blueprint-pathtools", 73 "blueprint", 85 "blueprint", 86 "blueprint-bootstrap", 115 "blueprint", 116 "blueprint-pathtools", 152 "blueprint", [all …]
|
D | soong.bash | 24 BUILDDIR="${BUILDDIR}" SKIP_NINJA=true build/blueprint/blueprint.bash
|
/build/blueprint/ |
D | build.ninja.in | 8 # bootstrap [from Go package github.com/google/blueprint/bootstrap] 54 # Module: blueprint 57 # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 61 ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ 71 … ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ 72 …${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a… 73 … ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a 74 ….bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I $… 75 pkgPath = github.com/google/blueprint 77 ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a [all …]
|
D | Blueprints | 2 name = "blueprint", 4 "blueprint-parser", 5 "blueprint-pathtools", 6 "blueprint-proptools", 8 pkgPath = "github.com/google/blueprint", 32 name = "blueprint-parser", 33 pkgPath = "github.com/google/blueprint/parser", 47 name = "blueprint-deptools", 48 pkgPath = "github.com/google/blueprint/deptools", 53 name = "blueprint-pathtools", [all …]
|
D | .travis.fix-fork.sh | 6 mv $TRAVIS_BUILD_DIR google/blueprint 7 cd google/blueprint
|
/build/soong/common/ |
D | arch.go | 121 Embed `blueprint:"filter(android:\"arch_variant\")"` 124 Armv5te interface{} `blueprint:"filter(android:\"arch_variant\")"` 125 Armv7_a interface{} `blueprint:"filter(android:\"arch_variant\")"` 126 Armv7_a_neon interface{} `blueprint:"filter(android:\"arch_variant\")"` 129 Cortex_a7 interface{} `blueprint:"filter(android:\"arch_variant\")"` 130 Cortex_a8 interface{} `blueprint:"filter(android:\"arch_variant\")"` 131 Cortex_a9 interface{} `blueprint:"filter(android:\"arch_variant\")"` 132 Cortex_a15 interface{} `blueprint:"filter(android:\"arch_variant\")"` 133 Cortex_a53 interface{} `blueprint:"filter(android:\"arch_variant\")"` 134 Cortex_a53_a57 interface{} `blueprint:"filter(android:\"arch_variant\")"` [all …]
|
D | module.go | 38 Rule blueprint.Rule 64 blueprint.BaseModuleContext 69 blueprint.ModuleContext 74 ModuleBuild(pctx blueprint.PackageContext, params ModuleBuildParams) 87 blueprint.Module 115 CompileHostOrDevice HostOrDevice `blueprint:"mutated"` 118 CompileHostType HostType `blueprint:"mutated"` 121 CompileArch Arch `blueprint:"mutated"` 124 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"` 142 propertyStructs ...interface{}) (blueprint.Module, []interface{}) { [all …]
|
D | mutator.go | 26 blueprint.TopDownMutatorContext 31 blueprint.TopDownMutatorContext 38 blueprint.BottomUpMutatorContext 43 blueprint.BottomUpMutatorContext 48 soong.RegisterBottomUpMutator(name, func(ctx blueprint.BottomUpMutatorContext) { 60 soong.RegisterTopDownMutator(name, func(ctx blueprint.TopDownMutatorContext) {
|
D | defs.go | 32 blueprint.RuleParams{ 41 blueprint.RuleParams{ 49 blueprint.RuleParams{ 57 blueprint.RuleParams{ 64 blueprint.RuleParams{
|
D | package_ctx.go | 26 blueprint.PackageContext 30 return AndroidPackageContext{blueprint.NewPackageContext(pkgPath)} 62 func (p AndroidPackageContext) SourcePathVariable(name, path string) blueprint.Variable { 77 func (p AndroidPackageContext) HostBinToolVariable(name, path string) blueprint.Variable { 92 func (p AndroidPackageContext) HostJavaToolVariable(name, path string) blueprint.Variable { 107 func (p AndroidPackageContext) IntermediatesPathVariable(name, path string) blueprint.Variable { 123 name, prefix string, paths []string) blueprint.Variable {
|
D | glob.go | 47 blueprint.RuleParams{ 53 Deps: blueprint.DepsGCC, 71 Build(pctx blueprint.PackageContext, params blueprint.BuildParams) 98 ctx.Build(pctx, blueprint.BuildParams{
|
D | androidmk.go | 50 func AndroidMkSingleton() blueprint.Singleton { 56 func (c *androidMkSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) { 65 ctx.VisitAllModules(func(module blueprint.Module) { 83 ctx.Build(pctx, blueprint.BuildParams{ 84 Rule: blueprint.Phony, 90 func translateAndroidMk(ctx blueprint.SingletonContext, mkFile string, mods []AndroidModule) error { 127 func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod blueprint.Module) er…
|
D | env.go | 35 func EnvSingleton() blueprint.Singleton { 41 func (c *envSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) {
|
D | defaults.go | 48 props ...interface{}) (blueprint.Module, []interface{}) { 79 func InitDefaultsModule(module AndroidModule, d Defaults, props ...interface{}) (blueprint.Module, … 115 ctx.VisitDirectDeps(func(m blueprint.Module) {
|
/build/blueprint/bootstrap/ |
D | bootstrap.go | 30 pctx = blueprint.NewPackageContext("github.com/google/blueprint/bootstrap") 38 blueprint.RuleParams{ 47 blueprint.RuleParams{ 55 blueprint.RuleParams{ 63 blueprint.RuleParams{ 71 blueprint.RuleParams{ 79 blueprint.RuleParams{ 86 blueprint.RuleParams{ 94 blueprint.RuleParams{ 102 blueprint.RuleParams{ [all …]
|
D | writedocs.go | 12 func writeDocs(ctx *blueprint.Context, srcDir, filename string) error { 19 func(module blueprint.Module) { 48 ctx.VisitDepsDepthFirst(primaryBuilder, func(module blueprint.Module) {
|
/build/soong/java/ |
D | gen.go | 37 blueprint.RuleParams{ 45 blueprint.RuleParams{ 52 blueprint.RuleParams{ 106 func LogtagsSingleton() blueprint.Singleton { 116 func (l *logtagsSingleton) GenerateBuildActions(ctx blueprint.SingletonContext) { 118 ctx.VisitAllModules(func(module blueprint.Module) { 124 ctx.Build(pctx, blueprint.BuildParams{
|
D | app_builder.go | 31 blueprint.RuleParams{ 42 blueprint.RuleParams{ 50 blueprint.RuleParams{ 59 blueprint.RuleParams{ 67 blueprint.RuleParams{
|
D | java.go | 101 Dex bool `blueprint:"mutated"` 161 props ...interface{}) (blueprint.Module, []interface{}) { 242 ctx.VisitDirectDeps(func(module blueprint.Module) { 323 ctx.VisitDirectDeps(func(module blueprint.Module) { 448 func JavaLibraryFactory() (blueprint.Module, []interface{}) { 456 func JavaLibraryHostFactory() (blueprint.Module, []interface{}) { 486 func JavaBinaryFactory() (blueprint.Module, []interface{}) { 494 func JavaBinaryHostFactory() (blueprint.Module, []interface{}) { 550 func JavaPrebuiltFactory() (blueprint.Module, []interface{}) { 590 func SdkPrebuiltFactory() (blueprint.Module, []interface{}) {
|
D | builder.go | 41 blueprint.RuleParams{ 53 blueprint.RuleParams{ 61 blueprint.RuleParams{ 71 blueprint.RuleParams{ 79 blueprint.RuleParams{
|
/build/soong/genrule/ |
D | genrule.go | 69 rule blueprint.Rule 88 ctx.AddFarVariationDependencies([]blueprint.Variation{ 97 g.rule = ctx.Rule(pctx, "generator", blueprint.RuleParams{ 101 ctx.VisitDirectDeps(func(module blueprint.Module) { 130 func generatorFactory(tasks taskFunc, props ...interface{}) (blueprint.Module, []interface{}) { 140 func GenSrcsFactory() (blueprint.Module, []interface{}) { 166 func GenRuleFactory() (blueprint.Module, []interface{}) {
|
/build/soong/cc/ |
D | builder.go | 42 blueprint.RuleParams{ 44 Deps: blueprint.DepsGCC, 52 blueprint.RuleParams{ 63 blueprint.RuleParams{ 71 blueprint.RuleParams{ 81 blueprint.RuleParams{ 89 blueprint.RuleParams{ 97 blueprint.RuleParams{ 107 blueprint.RuleParams{ 109 Deps: blueprint.DepsGCC, [all …]
|
D | cc.go | 484 func (c *Module) Init() (blueprint.Module, []interface{}) { 717 actx.AddVariationDependencies([]blueprint.Variation{{"link", "static"}}, staticLibs...) 721 actx.AddVariationDependencies([]blueprint.Variation{{"link", "shared"}}, sharedLibs...) 764 ctx.VisitDirectDeps(func(m blueprint.Module) { 854 ctx.VisitDirectDeps(func(bm blueprint.Module) { 1053 ctx.VisitDirectDeps(func(module blueprint.Module) { 1083 VariantIsShared bool `blueprint:"mutated"` 1084 VariantIsStatic bool `blueprint:"mutated"` 1085 VariantIsStaticBinary bool `blueprint:"mutated"` 1289 BuildStatic bool `blueprint:"mutated"` [all …]
|
123