diff options
Diffstat (limited to 'xml/xml.go')
-rw-r--r-- | xml/xml.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/xml/xml.go b/xml/xml.go index 218d73ce3..d89327f51 100644 --- a/xml/xml.go +++ b/xml/xml.go @@ -58,7 +58,7 @@ func init() { type prebuiltEtcXmlProperties struct { // Optional DTD that will be used to validate the xml file. - Schema *string + Schema *string `android:"path"` } type prebuiltEtcXml struct { @@ -73,9 +73,6 @@ func (p *prebuiltEtcXml) timestampFilePath(ctx android.ModuleContext) android.Wr func (p *prebuiltEtcXml) DepsMutator(ctx android.BottomUpMutatorContext) { p.PrebuiltEtc.DepsMutator(ctx) - - // To support ":modulename" in schema - android.ExtractSourceDeps(ctx, p.properties.Schema) } func (p *prebuiltEtcXml) GenerateAndroidBuildActions(ctx android.ModuleContext) { |