diff options
author | colincross <github@colincross.com> | 2015-09-14 16:01:46 -0700 |
---|---|---|
committer | colincross <github@colincross.com> | 2015-09-14 16:01:46 -0700 |
commit | 8282be78eea2785a3a63a6e1fa29574271993e97 (patch) | |
tree | 52c201b511ef3ec81c1c6808ff9779fea10f51e7 /bootstrap/command.go | |
parent | f5d4fb0626532284e02984ff48a17d949ff89c73 (diff) | |
parent | fdeb724f74406592726eae2135e8a9db90996eb6 (diff) | |
download | android_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.go | 1 |
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)) |