aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Michael Thvedt <mthvedt@google.com>2015-09-03 23:50:33 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2015-09-04 12:52:05 +0000
commit17e9d7cd408eee1e4e73a1fe6f76917954475937 (patch)
tree5782c3f6ea125b13c2b3fd19b8f0c4dc3803bb41 /examples
parentd6ff51c5c632dccb3deb8386331b5ca1b0484dc8 (diff)
Turn Bazel proto_library on for objc_proto_library.
-- MOS_MIGRATED_REVID=102294703
Diffstat (limited to 'examples')
-rw-r--r--examples/proto/BUILD6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/proto/BUILD b/examples/proto/BUILD
index 7ce5659ea6..32e43e5831 100644
--- a/examples/proto/BUILD
+++ b/examples/proto/BUILD
@@ -2,6 +2,12 @@ package(default_visibility = ["//visibility:public"])
load("/tools/build_rules/genproto", "proto_java_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(
name = "test_proto",
src = "test.proto",