Preopt: Pass -Xbootclasspath: arg to dex2oat.

Test: Pixel 2 XL boots.
Bug: 119868597
Change-Id: Ibbff11d13a6d67034e783de2f7d8c930251bd899
This commit is contained in:
Vladimir Marko
2018-12-19 17:57:57 +00:00
committed by Nicolas Geoffray
parent 1f8076b42d
commit d2ee532fc3
3 changed files with 15 additions and 1 deletions

View File

@@ -147,6 +147,11 @@ func (c *Command) Implicit(path string) *Command {
return c
}
func (c *Command) Implicits(paths []string) *Command {
c.inputs = append(c.inputs, paths...)
return c
}
func (c *Command) Output(path string) *Command {
c.outputs = append(c.outputs, path)
return c.Text(path)