blob: 0d3108176e64f4fd075316ae4a6a8fcfc4f3719a [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
load("//tools/build_rules:genproto.bzl", "java_proto_library")
proto_library(
name = "proto_smoke_test",
srcs = ["test.proto"],
)
# java_proto_library is a quick and dirty rule to help Bazel compile itself.
java_proto_library(
name = "test_proto",
src = "test.proto",
)
filegroup(
name = "srcs",
srcs = [
"BUILD",
"test.proto",
],
)