aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/command.go
diff options
context:
space:
mode:
authorcolincross <github@colincross.com>2015-09-14 16:01:46 -0700
committercolincross <github@colincross.com>2015-09-14 16:01:46 -0700
commit8282be78eea2785a3a63a6e1fa29574271993e97 (patch)
tree52c201b511ef3ec81c1c6808ff9779fea10f51e7 /bootstrap/command.go
parentf5d4fb0626532284e02984ff48a17d949ff89c73 (diff)
parentfdeb724f74406592726eae2135e8a9db90996eb6 (diff)
downloadandroid_build_blueprint-8282be78eea2785a3a63a6e1fa29574271993e97.tar.gz
android_build_blueprint-8282be78eea2785a3a63a6e1fa29574271993e97.tar.bz2
android_build_blueprint-8282be78eea2785a3a63a6e1fa29574271993e97.zip
Merge pull request #49 from danw/plugins
Implement go bootstrap plugins
Diffstat (limited to 'bootstrap/command.go')
-rw-r--r--bootstrap/command.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstrap/command.go b/bootstrap/command.go
index 765d73a..6a19262 100644
--- a/bootstrap/command.go
+++ b/bootstrap/command.go
@@ -90,6 +90,7 @@ func Main(ctx *blueprint.Context, config interface{}, extraNinjaFileDeps ...stri
runGoTests: runGoTests,
}
+ ctx.RegisterBottomUpMutator("bootstrap_plugin_deps", pluginDeps)
ctx.RegisterModuleType("bootstrap_go_package", newGoPackageModuleFactory(bootstrapConfig))
ctx.RegisterModuleType("bootstrap_core_go_binary", newGoBinaryModuleFactory(bootstrapConfig, StageBootstrap))
ctx.RegisterModuleType("bootstrap_go_binary", newGoBinaryModuleFactory(bootstrapConfig, StagePrimary))