aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Julio Merino <jmmv@google.com>2016-02-18 23:48:32 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-19 08:59:00 +0000
commit699f87aee01c8ae55b29c0a8ff76527795d2d14d (patch)
tree9623c9ecb6f6f5ad33f69c269c0e15587d5fa285 /examples
parentcefb639f3d2c0a8e331d46332f78bfa4ed1d8691 (diff)
Rename proto_java_library to java_proto_library.
RELNOTES[INC]: Renamed proto_java_library to java_proto_library. The former is now deprecated and will print out a warning when used. -- MOS_MIGRATED_REVID=115012027
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",
)