summaryrefslogtreecommitdiff
path: root/android/writedocs.go
diff options
context:
space:
mode:
author Christopher Parsons <cparsons@google.com> 2020-06-18 21:49:48 +0000
committer Christopher Parsons <cparsons@google.com> 2020-06-18 21:49:48 +0000
commitcd767eefe5b5738343d79cc11aa2ab38208139b0 (patch)
tree3d3aeedc062eecf269f45a6e2aaa8928b4bac133 /android/writedocs.go
parent67eee7cae4dc1085d016f47515e9e4b15ab3aba4 (diff)
Revert "Add Android.bp.list and soong.variables to inputs for soong_docs action"
This reverts commit 67eee7cae4dc1085d016f47515e9e4b15ab3aba4. Reason for revert: Broke renderscript build Change-Id: Ie26b3c7a78afe44d719f399520e643174109593f
Diffstat (limited to 'android/writedocs.go')
-rw-r--r--android/writedocs.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/android/writedocs.go b/android/writedocs.go
index 4eb15e61d..9e43e80a6 100644
--- a/android/writedocs.go
+++ b/android/writedocs.go
@@ -44,10 +44,6 @@ func primaryBuilderPath(ctx SingletonContext) Path {
}
func (c *docsSingleton) GenerateBuildActions(ctx SingletonContext) {
- var deps Paths
- deps = append(deps, pathForBuildToolDep(ctx, ctx.Config().moduleListFile))
- deps = append(deps, pathForBuildToolDep(ctx, ctx.Config().ProductVariablesFileName))
-
// Generate build system docs for the primary builder. Generating docs reads the source
// files used to build the primary builder, but that dependency will be picked up through
// the dependency on the primary builder itself. There are no dependencies on the
@@ -67,7 +63,6 @@ func (c *docsSingleton) GenerateBuildActions(ctx SingletonContext) {
ctx.Build(pctx, BuildParams{
Rule: soongDocs,
Output: docsFile,
- Inputs: deps,
Args: map[string]string{
"outDir": PathForOutput(ctx, "docs").String(),
},