Merge "Export: phonyFactory -> PhonyFactory"
This commit is contained in:
commit
4a719a0ef0
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue