diff options
author | Colin Cross <ccross@android.com> | 2015-06-17 14:20:06 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-07-09 17:57:18 -0700 |
commit | 463a90e5872d6c8cf26a2302e7ad1586957304a0 (patch) | |
tree | 3d8001008839eff93d224dc2411be26842a7f9ad /common | |
parent | 3fde0c220aa0c43ef125f0156d27499622b59b61 (diff) | |
download | build_soong-463a90e5872d6c8cf26a2302e7ad1586957304a0.tar.gz build_soong-463a90e5872d6c8cf26a2302e7ad1586957304a0.tar.bz2 build_soong-463a90e5872d6c8cf26a2302e7ad1586957304a0.zip |
use init functions to register module types, etc.
Instead of putting all the blueprint registrations in soong_build,
put them all in init() functions. This puts the registration next
to the implementation.
Change-Id: Ide1a749518f5e9d1367a18ab3bb1d91da3310c76
Diffstat (limited to 'common')
-rw-r--r-- | common/arch.go | 7 | ||||
-rw-r--r-- | common/env.go | 5 | ||||
-rw-r--r-- | common/module.go | 5 |
3 files changed, 17 insertions, 0 deletions
diff --git a/common/arch.go b/common/arch.go index 6865904d..c0e63eb0 100644 --- a/common/arch.go +++ b/common/arch.go @@ -20,10 +20,17 @@ import ( "runtime" "strings" + "android/soong" + "github.com/google/blueprint" "github.com/google/blueprint/proptools" ) +func init() { + soong.RegisterEarlyMutator("host_or_device", HostOrDeviceMutator) + soong.RegisterEarlyMutator("arch", ArchMutator) +} + var ( Arm = newArch("arm", "lib32") Arm64 = newArch("arm64", "lib64") diff --git a/common/env.go b/common/env.go index e33a0258..3214baa8 100644 --- a/common/env.go +++ b/common/env.go @@ -15,6 +15,7 @@ package common import ( + "android/soong" "android/soong/env" "github.com/google/blueprint" @@ -27,6 +28,10 @@ import ( // compare the contents of the environment variables, rewriting the file if necessary to cause // a manifest regeneration. +func init() { + soong.RegisterSingletonType("env", EnvSingleton) +} + func EnvSingleton() blueprint.Singleton { return &envSingleton{} } diff --git a/common/module.go b/common/module.go index 1d17de10..b19b6d1c 100644 --- a/common/module.go +++ b/common/module.go @@ -15,6 +15,7 @@ package common import ( + "android/soong" "path/filepath" "runtime" "sort" @@ -520,6 +521,10 @@ func (ctx *androidModuleContext) Glob(globPattern string, excludes []string) []s return ret } +func init() { + soong.RegisterSingletonType("buildtarget", BuildTargetSingleton) +} + func BuildTargetSingleton() blueprint.Singleton { return &buildTargetSingleton{} } |