aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/proto/BUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/proto/BUILD b/examples/proto/BUILD
index def85a789f..0d3108176e 100644
--- a/examples/proto/BUILD
+++ b/examples/proto/BUILD
@@ -1,14 +1,14 @@
package(default_visibility = ["//visibility:public"])
-load("//tools/build_rules:genproto.bzl", "proto_java_library")
+load("//tools/build_rules:genproto.bzl", "java_proto_library")
proto_library(
name = "proto_smoke_test",
srcs = ["test.proto"],
)
-# proto_java_library is a quick and dirty rule to help Bazel compile itself.
-proto_java_library(
+# java_proto_library is a quick and dirty rule to help Bazel compile itself.
+java_proto_library(
name = "test_proto",
src = "test.proto",
)