From 699f87aee01c8ae55b29c0a8ff76527795d2d14d Mon Sep 17 00:00:00 2001 From: Julio Merino Date: Thu, 18 Feb 2016 23:48:32 +0000 Subject: 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 --- examples/proto/BUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') 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", ) -- cgit v1.2.3