Merge "Export: phonyFactory -> PhonyFactory"

This commit is contained in:
Treehugger Robot 2018-07-12 00:17:29 +00:00 committed by Gerrit Code Review
commit 4a719a0ef0
1 changed files with 2 additions and 2 deletions

View File

@ -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)