Merge "Export: phonyFactory -> PhonyFactory"

am: 4a719a0ef0

Change-Id: I9a104e2ba3e4499c647b22de1670ab9c42ebdd08
This commit is contained in:
Steven Moreland 2018-07-11 18:13:38 -07:00 committed by android-build-merger
commit 341c08f323

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)