Merge changes I5b8522aa,I541aea75

am: cdec7e7ee1

Change-Id: Ib68f185498f593f0812f481b2c82753cd5956fa5
This commit is contained in:
Colin Cross
2018-07-16 17:20:20 -07:00
committed by android-build-merger
4 changed files with 4 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ import (
func main() { func main() {
flag.Usage = func() { flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s <depfile.d>") fmt.Fprintf(os.Stderr, "Usage: %s <depfile.d>", os.Args[0])
flag.PrintDefaults() flag.PrintDefaults()
} }
output := flag.String("o", "", "Optional output file (defaults to rewriting source if necessary)") output := flag.String("o", "", "Optional output file (defaults to rewriting source if necessary)")

View File

@@ -183,7 +183,7 @@ func TestMissingPath(t *testing.T) {
interposer := setup(t) interposer := setup(t)
err := os.Remove(interposer + "_origpath") err := os.Remove(interposer + "_origpath")
if err != nil { if err != nil {
t.Fatalf("Failed to remove:", err) t.Fatal("Failed to remove:", err)
} }
exitCode, err := Main(ioutil.Discard, ioutil.Discard, interposer, []string{"true"}, mainOpts{}) exitCode, err := Main(ioutil.Discard, ioutil.Discard, interposer, []string{"true"}, mainOpts{})

View File

@@ -524,7 +524,7 @@ Usage: %s [--rewrite <regex>=<replace>] [-exclude <module>] [--extra-deps <modul
if pom.IsAar() { if pom.IsAar() {
err := pom.ExtractMinSdkVersion() err := pom.ExtractMinSdkVersion()
if err != nil { if err != nil {
fmt.Fprintln(os.Stderr, "Error reading manifest for %s: %s", pom.ArtifactFile, err) fmt.Fprintf(os.Stderr, "Error reading manifest for %s: %s", pom.ArtifactFile, err)
os.Exit(1) os.Exit(1)
} }
} }

View File

@@ -1034,7 +1034,7 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path
// TODO(pszczepaniak): Support kotlin-reflect // TODO(pszczepaniak): Support kotlin-reflect
stripFiles = append(stripFiles, stripFiles = append(stripFiles,
"**/*.kotlin_module", "**/*.kotlin_module",
"**/*.kotlin_builtin") "**/*.kotlin_builtins")
} else { } else {
// Only add kotlin-stdlib if not using (on-device) renamed stdlib // Only add kotlin-stdlib if not using (on-device) renamed stdlib
// (it's expected to be on device bootclasspath) // (it's expected to be on device bootclasspath)