Merge "Soong: update the synopsis of vts_config module." am: 6f933e5528

am: 826a11f6ec

Change-Id: Ieaeb9026b521e43d0921a5dede8ab1adbf72bc83
This commit is contained in:
Patrice Arruda 2019-03-14 18:35:08 -07:00 committed by android-build-merger
commit 71bd15d860

View file

@ -19,14 +19,12 @@ import (
"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 @@ func InitVtsConfigModule(me *VtsConfig) {
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)