Start bringing microbenchmarks to Bazel
diff --git a/WORKSPACE b/WORKSPACE
index 4f90f06..b929861 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -33,6 +33,11 @@
     actual = "@submodule_gtest//:gtest",
 )
 
+bind(
+    name = "benchmark",
+    actual = "@submodule_benchmark//:benchmark",
+)
+
 new_local_repository(
     name = "submodule_boringssl",
     path = "third_party/boringssl-with-bazel",
@@ -56,3 +61,9 @@
     path = "third_party/googletest",
     build_file = "third_party/gtest.BUILD",
 )
+
+new_local_repository(
+    name = "submodule_benchmark",
+    path = "third_party/benchmark",
+    build_file = "third_party/benchmark.BUILD",
+)