From 4cb7828376e1e5ec333aae9f851b7b35e6f15040 Mon Sep 17 00:00:00 2001 From: Brotli Date: Wed, 18 Jun 2025 07:46:14 -0700 Subject: [PATCH] [brotli/go] Add missing importpath BUILD.bazel Otherwise the package cannot be imported correctly in open source. This CL allows the brotli and cbrotli tests to pass correctly with bazel (open-source version of blaze). PiperOrigin-RevId: 772917739 --- go/brotli/BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/go/brotli/BUILD.bazel b/go/brotli/BUILD.bazel index 8083211..522d9e4 100644 --- a/go/brotli/BUILD.bazel +++ b/go/brotli/BUILD.bazel @@ -10,6 +10,7 @@ go_library( "decode.go", "reader.go", ], + importpath = "github.com/google/brotli/go/brotli", ) go_test(