Revert "Add Android.bp.list and soong.variables to inputs for soong_docs action"

This reverts commit 67eee7cae4.

Reason for revert: Broke renderscript build

Change-Id: Ie26b3c7a78afe44d719f399520e643174109593f
This commit is contained in:
Christopher Parsons
2020-06-18 21:49:48 +00:00
parent 67eee7cae4
commit cd767eefe5
5 changed files with 6 additions and 39 deletions

View File

@@ -904,27 +904,6 @@ func (p OutputPath) buildDir() string {
var _ Path = OutputPath{}
var _ WritablePath = OutputPath{}
// toolDepPath is a Path representing a dependency of the build tool.
type toolDepPath struct {
basePath
}
var _ Path = toolDepPath{}
// pathForBuildToolDep joins the provided paths and returns a toolDepPath that
// is validated to not contain invalid characters.
// There is no validation for the base directory of the constructed path.
// Only use this function to construct paths for depenencies of the build
// tool invocation.
// On error, it will return a usable, but invalid toolDepPath, and report a ModuleError.
func pathForBuildToolDep(ctx PathContext, pathComponents ...string) toolDepPath {
path, err := validatePath(pathComponents...)
if err != nil {
reportPathError(ctx, err)
}
return toolDepPath{basePath{path, ctx.Config(), ""}}
}
// PathForOutput joins the provided paths and returns an OutputPath that is
// validated to not escape the build dir.
// On error, it will return a usable, but invalid OutputPath, and report a ModuleError.