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

Commit ded9acd8 authored by Sasha Smundak's avatar Sasha Smundak
Browse files

Fix go.mod for tools/compliance

Now it can be built with `go build`, and can be cross-referenced.

Test: treehugger
Change-Id: Ic35631ff6a915c8cf58db14aa83c849549e64aba
parent 1fabb2a9
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -4,9 +4,17 @@ require google.golang.org/protobuf v0.0.0

replace google.golang.org/protobuf v0.0.0 => ../../../../external/golang-protobuf

require android/soong v0.0.0
require (
	android/soong v0.0.0
	github.com/google/blueprint v0.0.0
)

require golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect

replace android/soong v0.0.0 => ../../../soong

replace github.com/google/blueprint => ../../../blueprint

// Indirect deps from golang-protobuf
exclude github.com/golang/protobuf v1.5.0

+2 −0
Original line number Diff line number Diff line
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f h1:uF6paiQQebLeSXkrTqHqz0MXhXXS1KgF41eUdBNvxK0=
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=