diff --git a/genrule/genrule.go b/genrule/genrule.go index 8b8087155..00baa57cb 100644 --- a/genrule/genrule.go +++ b/genrule/genrule.go @@ -83,7 +83,6 @@ type hostToolDependencyTag struct { type generatorProperties struct { // The command to run on one or more input files. Cmd supports substitution of a few variables - // (the actual substitution is implemented in GenerateAndroidBuildActions below) // // Available variables for substitution: // @@ -94,9 +93,6 @@ type generatorProperties struct { // $(depfile): a file to which dependencies will be written, if the depfile property is set to true // $(genDir): the sandbox directory for this tool; contains $(out) // $$: a literal $ - // - // All files used must be declared as inputs (to ensure proper up-to-date checks). - // Use "$(in)" directly in Cmd to ensure that all inputs used are declared. Cmd *string // Enable reading a file containing dependencies in gcc format after the command completes