aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-07-12 00:17:29 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-07-12 00:17:29 +0000
commit4a719a0ef033608e0116b6b9ac2f1add9d01a28c (patch)
tree7911210fd2a4c15cdebfae2c7e76eadb03b34ed1
parent7f1c57ee33d7117cda29bb1b7cd84dfe341632a9 (diff)
parent00e1e61bfb4da600e4c719b549cfbeda0fd067c9 (diff)
downloadbuild_soong-4a719a0ef033608e0116b6b9ac2f1add9d01a28c.tar.gz
build_soong-4a719a0ef033608e0116b6b9ac2f1add9d01a28c.tar.bz2
build_soong-4a719a0ef033608e0116b6b9ac2f1add9d01a28c.zip
Merge "Export: phonyFactory -> PhonyFactory"
-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)