Update from Google.
--
MOE_MIGRATED_REVID=85702957
diff --git a/base_workspace/examples/cpp/BUILD b/base_workspace/examples/cpp/BUILD
new file mode 100644
index 0000000..195bbb3
--- /dev/null
+++ b/base_workspace/examples/cpp/BUILD
@@ -0,0 +1,25 @@
+package(default_visibility = ["//visibility:public"])
+
+cc_library(
+ name = "hello-lib",
+ srcs = ["hello-lib.cc"],
+ hdrs = ["hello-lib.h"],
+)
+
+cc_binary(
+ name = "hello-world",
+ srcs = ["hello-world.cc"],
+ deps = [":hello-lib"],
+)
+
+cc_test(
+ name = "hello-success_test",
+ srcs = ["hello-world.cc"],
+ deps = [":hello-lib"],
+)
+
+cc_test(
+ name = "hello-fail_test",
+ srcs = ["hello-fail.cc"],
+ deps = [":hello-lib"],
+)