diff --git a/phony/phony.go b/phony/phony.go index a39b5d51e..0c62e8a01 100644 --- a/phony/phony.go +++ b/phony/phony.go @@ -23,7 +23,7 @@ import ( ) func init() { - android.RegisterModuleType("phony", phonyFactory) + android.RegisterModuleType("phony", PhonyFactory) } type phony struct { @@ -31,7 +31,7 @@ type phony struct { requiredModuleNames []string } -func phonyFactory() android.Module { +func PhonyFactory() android.Module { module := &phony{} android.InitAndroidModule(module)