diff options
author | 2022-06-22 15:11:21 +0000 | |
---|---|---|
committer | 2022-08-25 14:47:41 -0400 | |
commit | 1fa2672be9d9feeab83125b75f82bd994a0972ba (patch) | |
tree | 799f99359bebd0414febccfd7c91699e70a59d07 /go.mod | |
parent | 2351eacb19faed3867903e1ddfa2992f7a787d02 (diff) |
add bp2build unit tests for aidl_interface
Bug: 229251008
Test: go test ./bp2build -run TestAidlInterface
Change-Id: Ie7214d5578bc21e348410ca91ea42d7a3190eb3d
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,13 +1,17 @@ module android/soong -require google.golang.org/protobuf v0.0.0 - -require github.com/google/blueprint v0.0.0 +require ( + google.golang.org/protobuf v0.0.0 + github.com/google/blueprint v0.0.0 + android/soong/aidl v0.0.0 +) replace google.golang.org/protobuf v0.0.0 => ../../external/golang-protobuf replace github.com/google/blueprint v0.0.0 => ../blueprint +replace android/soong/aidl v0.0.0 => ../../system/tools/aidl/build + // Indirect deps from golang-protobuf exclude github.com/golang/protobuf v1.5.0 |