diff options
| -rw-r--r-- | tools/csuite_test/go.mod | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/tools/csuite_test/go.mod b/tools/csuite_test/go.mod index a373cd1..2ab342d 100644 --- a/tools/csuite_test/go.mod +++ b/tools/csuite_test/go.mod @@ -1,14 +1,22 @@ module android/soong/csuite require ( - android/soong v0.0.0 - github.com/google/blueprint v0.0.0 + android/soong v0.0.0 + github.com/google/blueprint v0.0.0 ) replace android/soong v0.0.0 => ../../../../../build/soong -replace github.com/golang/protobuf v0.0.0 => ../../../../../external/golang-protobuf +replace google.golang.org/protobuf v0.0.0 => ../../../../../external/golang-protobuf replace github.com/google/blueprint v0.0.0 => ../../../../../build/blueprint -go 1.13
\ No newline at end of file +// Indirect deps from golang-protobuf +exclude github.com/golang/protobuf v1.5.0 + +replace github.com/google/go-cmp v0.5.5 => ../../../../../external/go-cmp + +// Indirect dep from go-cmp +exclude golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 + +go 1.13 |
