commit | 4a719a0ef033608e0116b6b9ac2f1add9d01a28c | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Thu Jul 12 00:17:29 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Jul 12 00:17:29 2018 +0000 |
tree | 7911210fd2a4c15cdebfae2c7e76eadb03b34ed1 | |
parent | 7f1c57ee33d7117cda29bb1b7cd84dfe341632a9 [diff] | |
parent | 00e1e61bfb4da600e4c719b549cfbeda0fd067c9 [diff] |
Merge "Export: phonyFactory -> PhonyFactory"
diff --git a/phony/phony.go b/phony/phony.go index a39b5d5..0c62e8a 100644 --- a/phony/phony.go +++ b/phony/phony.go
@@ -23,7 +23,7 @@ ) func init() { - android.RegisterModuleType("phony", phonyFactory) + android.RegisterModuleType("phony", PhonyFactory) } type phony struct { @@ -31,7 +31,7 @@ requiredModuleNames []string } -func phonyFactory() android.Module { +func PhonyFactory() android.Module { module := &phony{} android.InitAndroidModule(module)