Merge "Update documentation for genrule and sdk_library" am: 8662a3793b

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1780976

Change-Id: Id213c1f615811718476f7546b683b488b711a0f4
This commit is contained in:
Treehugger Robot 2021-08-04 00:29:51 +00:00 committed by Automerger Merge Worker
commit 099a42701a
2 changed files with 9 additions and 8 deletions

View file

@ -112,16 +112,17 @@ type hostToolDependencyTag struct {
label string
}
type generatorProperties struct {
// The command to run on one or more input files. Cmd supports substitution of a few variables
// The command to run on one or more input files. Cmd supports substitution of a few variables.
//
// Available variables for substitution:
//
// $(location): the path to the first entry in tools or tool_files
// $(location <label>): the path to the tool, tool_file, input or output with name <label>
// $(in): one or more input files
// $(out): a single output file
// $(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)
// $(location): the path to the first entry in tools or tool_files.
// $(location <label>): the path to the tool, tool_file, input or output with name <label>. Use $(location) if <label> refers to a rule that outputs exactly one file.
// $(locations <label>): the paths to the tools, tool_files, inputs or outputs with name <label>. Use $(locations) if <label> refers to a rule that outputs two or more files.
// $(in): one or more input files.
// $(out): a single output file.
// $(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 $
Cmd *string

View file

@ -419,7 +419,7 @@ type sdkLibraryProperties struct {
// local files that are used within user customized droiddoc options.
Droiddoc_option_files []string
// additional droiddoc options
// additional droiddoc options.
// Available variables for substitution:
//
// $(location <label>): the path to the droiddoc_option_files with name <label>