aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorPatrice Arruda <patricearruda@google.com>2019-03-12 10:06:00 -0700
committerPatrice Arruda <patricearruda@google.com>2019-03-13 10:53:36 -0700
commit8958a942d1fbf51670b22a5cf2fc0c64473464a7 (patch)
tree346279c4a7c08fb7eee5aa11d144e293148850ca /android
parent66184450d5765889a5fb71d14c1a44959ebaefbe (diff)
downloadbuild_soong-8958a942d1fbf51670b22a5cf2fc0c64473464a7.tar.gz
build_soong-8958a942d1fbf51670b22a5cf2fc0c64473464a7.tar.bz2
build_soong-8958a942d1fbf51670b22a5cf2fc0c64473464a7.zip
Soong: Update the filegroup's synopsis documentation.
Cleaned up the synopsis of filegroups module under android package. Bug: b/128337482 Test: built the documentation manually and verified that the changes took place. Change-Id: Ib5544125e5462fca7c7aebc4bed4647bba11d56b
Diffstat (limited to 'android')
-rw-r--r--android/filegroup.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/filegroup.go b/android/filegroup.go
index 76af804b..c2be22a3 100644
--- a/android/filegroup.go
+++ b/android/filegroup.go
@@ -49,9 +49,9 @@ type fileGroup struct {
var _ SourceFileProducer = (*fileGroup)(nil)
-// filegroup modules contain a list of files, and can be used to export files across package
-// boundaries. filegroups (and genrules) can be referenced from srcs properties of other modules
-// using the syntax ":module".
+// filegroup contains a list of files that are referenced by other modules
+// properties (such as "srcs") using the syntax ":<name>". filegroup are
+// also be used to export files across package boundaries.
func FileGroupFactory() Module {
module := &fileGroup{}
module.AddProperties(&module.properties)