Update from Google.

--
MOE_MIGRATED_REVID=85702957
diff --git a/base_workspace/examples/proto/test.proto b/base_workspace/examples/proto/test.proto
new file mode 100644
index 0000000..16a6dc3
--- /dev/null
+++ b/base_workspace/examples/proto/test.proto
@@ -0,0 +1,10 @@
+syntax = "proto2";
+
+package test;
+
+option java_package = "com.google.test";
+
+message KeyVal {
+  optional string key = 1;
+  optional string val = 2;
+}