Soong: update the synopsis of vts_config module.

Added more details on the vts_config synopsis.

Bug: b/128337482
Test: Ran the doc generation command and verified that the synopsis
was updated in vts_config module.

Change-Id: I1d29a7f800b5dd4e6f1719af5d0d3b723202f33d
diff --git a/android/vts_config.go b/android/vts_config.go
index f468ba8..c44b3a3 100644
--- a/android/vts_config.go
+++ b/android/vts_config.go
@@ -19,14 +19,12 @@
 	"io"
 )
 
-// Implements vts_config module
-
 func init() {
 	RegisterModuleType("vts_config", VtsConfigFactory)
 }
 
 type vtsConfigProperties struct {
-	// Test manifest file name if different from AndroidTest.xml.
+	// Override the default (AndroidTest.xml) test manifest file name.
 	Test_config *string
 }
 
@@ -61,7 +59,8 @@
 	me.AddProperties(&me.properties)
 }
 
-// Defines VTS configuration.
+// vts_config generates a Vendor Test Suite (VTS) configuration file from the
+// <test_config> xml file and stores it in a subdirectory of $(HOST_OUT).
 func VtsConfigFactory() Module {
 	module := &VtsConfig{}
 	InitVtsConfigModule(module)