aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/proto/BUILD
blob: 0d3108176e64f4fd075316ae4a6a8fcfc4f3719a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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",
    ],
)