From 7aed4cadb4ff1bc676b83b4e7ce1a309f6d309fd Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Fri, 3 Jul 2026 23:17:43 -0700 Subject: [PATCH 1/2] Use pre-compiled protos --- .bazelrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bazelrc b/.bazelrc index 7391598..d579201 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,8 @@ common --experimental_google_legacy_api +# Use pre-built protobuf compiler/tooling from protobuf module. +common --@protobuf//bazel/toolchains:prefer_prebuilt_protoc + # Lint 32.x ships Java 17 bytecode; the lint worker must run on a 17+ JVM. # JDK 17 is the standard across the Android rules. common --java_language_version=17 From 472ce89c400f326169179d1bdaecaca99eea8176 Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Fri, 3 Jul 2026 23:20:24 -0700 Subject: [PATCH 2/2] Fix name --- .bazelrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index d579201..94f5ecc 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,7 +1,7 @@ common --experimental_google_legacy_api # Use pre-built protobuf compiler/tooling from protobuf module. -common --@protobuf//bazel/toolchains:prefer_prebuilt_protoc +common --@com_google_protobuf//bazel/toolchains:prefer_prebuilt_protoc # Lint 32.x ships Java 17 bytecode; the lint worker must run on a 17+ JVM. # JDK 17 is the standard across the Android rules.