When building with blueprint, go 1.22 will be used, but if you used go build or go test manually, the version in the go.mod will be used. Go 1.22 has a subtle change that we want to make sure we're always using: https://go.dev/blog/loopvar-preview Bug: 330574836 Test: Presubmits Change-Id: Idf46b77c4f817345c1f9aca039d8735bb101967f
22 lines
708 B
Plaintext
22 lines
708 B
Plaintext
go 1.22
|
|
|
|
use (
|
|
.
|
|
../../external/go-cmp
|
|
../../external/golang-protobuf
|
|
../../external/starlark-go
|
|
../../prebuilts/bazel/common/proto/analysis_v2
|
|
../../prebuilts/bazel/common/proto/build
|
|
../blueprint
|
|
)
|
|
|
|
replace (
|
|
github.com/golang/protobuf v0.0.0 => ../../external/golang-protobuf
|
|
github.com/google/blueprint v0.0.0 => ../blueprint
|
|
github.com/google/go-cmp v0.0.0 => ../../external/go-cmp
|
|
google.golang.org/protobuf v0.0.0 => ../../external/golang-protobuf
|
|
prebuilts/bazel/common/proto/analysis_v2 v0.0.0 => ../../prebuilts/bazel/common/proto/analysis_v2
|
|
prebuilts/bazel/common/proto/build v0.0.0 => ../../prebuilts/bazel/common/proto/build
|
|
go.starlark.net v0.0.0 => ../../external/starlark-go
|
|
)
|