Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdec7e7e authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge changes I5b8522aa,I541aea75

* changes:
  Fix lint errors caught by go test
  Fix .kotlin_builtins glob
parents 6d6faa1a fe5a3b7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ import (

func main() {
	flag.Usage = func() {
		fmt.Fprintf(os.Stderr, "Usage: %s <depfile.d>")
		fmt.Fprintf(os.Stderr, "Usage: %s <depfile.d>", os.Args[0])
		flag.PrintDefaults()
	}
	output := flag.String("o", "", "Optional output file (defaults to rewriting source if necessary)")
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ func TestMissingPath(t *testing.T) {
	interposer := setup(t)
	err := os.Remove(interposer + "_origpath")
	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{})
+1 −1
Original line number Diff line number Diff line
@@ -524,7 +524,7 @@ Usage: %s [--rewrite <regex>=<replace>] [-exclude <module>] [--extra-deps <modul
		if pom.IsAar() {
			err := pom.ExtractMinSdkVersion()
			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)
			}
		}
+1 −1
Original line number Diff line number Diff line
@@ -1034,7 +1034,7 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path
			// TODO(pszczepaniak): Support kotlin-reflect
			stripFiles = append(stripFiles,
				"**/*.kotlin_module",
				"**/*.kotlin_builtin")
				"**/*.kotlin_builtins")
		} else {
			// Only add kotlin-stdlib if not using (on-device) renamed stdlib
			// (it's expected to be on device bootclasspath)