2026-01-07 16:48:17 -08:00
|
|
|
load("@com_google_protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
|
2025-12-15 11:41:24 -08:00
|
|
|
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
|
|
|
|
|
|
|
|
|
|
proto_library(
|
|
|
|
|
name = "empty_proto",
|
|
|
|
|
srcs = ["empty.proto"],
|
|
|
|
|
)
|
2026-01-07 16:48:17 -08:00
|
|
|
|
|
|
|
|
cc_proto_library(
|
|
|
|
|
name = "cc_empty_proto",
|
|
|
|
|
# We already have a anaylsis test that asserts that the cc_proto_library
|
|
|
|
|
# uses the correct prebuilt toolchain, this cc_proto_library will never
|
|
|
|
|
# compile since the prebuilt toolchain is always behind the HEAD therefore
|
|
|
|
|
# will end up in version skew compilation errors.
|
|
|
|
|
tags = ["manual"],
|
|
|
|
|
deps = [":empty_proto"],
|
|
|
|
|
)
|