aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phony/phony.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/phony/phony.go b/phony/phony.go
index a39b5d51..0c62e8a0 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)