Move registration into android package
Mutator registration is tightly coupled with the android package, move
all registration from the soong package to the android package.
Test: build.ninja identical
Change-Id: Ie183d0b52cc7431c9e05b231934d189208ef1efe
diff --git a/android/androidmk.go b/android/androidmk.go
index a408933..28c2290 100644
--- a/android/androidmk.go
+++ b/android/androidmk.go
@@ -24,14 +24,12 @@
"sort"
"strings"
- "android/soong"
-
"github.com/google/blueprint"
"github.com/google/blueprint/proptools"
)
func init() {
- soong.RegisterSingletonType("androidmk", AndroidMkSingleton)
+ RegisterSingletonType("androidmk", AndroidMkSingleton)
}
type AndroidMkDataProvider interface {