blob: 4dbbd98fb8bdc48842b4ee3957eefe58eaf4d455 [file] [log] [blame]
load("@com_google_protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
load("@com_google_protobuf//bazel:proto_library.bzl", "proto_library")
proto_library(
name = "empty_proto",
srcs = ["empty.proto"],
)
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"],
)