aboutsummaryrefslogtreecommitdiffstats
path: root/genrule
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-10-17 21:38:14 -0700
committerColin Cross <ccross@android.com>2017-10-18 05:44:54 +0000
commit2296f5b3c482e53f27c15bfe0da73d90adea4897 (patch)
tree79a176243f099032113645ccb459ea0a546d0531 /genrule
parent21dc570e5f920795f6ba839ca6354cf9634ae9fc (diff)
downloadbuild_soong-2296f5b3c482e53f27c15bfe0da73d90adea4897.tar.gz
build_soong-2296f5b3c482e53f27c15bfe0da73d90adea4897.tar.bz2
build_soong-2296f5b3c482e53f27c15bfe0da73d90adea4897.zip
Use indent to preformat genrule property documentation
Test: manual inspection of soong_build.html Change-Id: Ibb5086de5497eb096ee7f68a5fd1ccaba630aa89
Diffstat (limited to 'genrule')
-rw-r--r--genrule/genrule.go14
1 files changed, 7 insertions, 7 deletions
diff --git a/genrule/genrule.go b/genrule/genrule.go
index 7c1350ea..4a734dad 100644
--- a/genrule/genrule.go
+++ b/genrule/genrule.go
@@ -61,13 +61,13 @@ type generatorProperties struct {
//
// Available variables for substitution:
//
- // $(location): the path to the first entry in tools or tool_files
- // $(location <label>): the path to the tool or tool_file 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)
- // $$: a literal $
+ // $(location): the path to the first entry in tools or tool_files
+ // $(location <label>): the path to the tool or tool_file 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)
+ // $$: 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.