Merge "Soong: update the synopsis of vts_config module."

This commit is contained in:
Treehugger Robot
2019-03-15 01:22:27 +00:00
committed by Gerrit Code Review

View File

@@ -19,14 +19,12 @@ import (
"io" "io"
) )
// Implements vts_config module
func init() { func init() {
RegisterModuleType("vts_config", VtsConfigFactory) RegisterModuleType("vts_config", VtsConfigFactory)
} }
type vtsConfigProperties struct { type vtsConfigProperties struct {
// Test manifest file name if different from AndroidTest.xml. // Override the default (AndroidTest.xml) test manifest file name.
Test_config *string Test_config *string
} }
@@ -61,7 +59,8 @@ func InitVtsConfigModule(me *VtsConfig) {
me.AddProperties(&me.properties) 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 { func VtsConfigFactory() Module {
module := &VtsConfig{} module := &VtsConfig{}
InitVtsConfigModule(module) InitVtsConfigModule(module)