Added matplotlibcpp build file.

Change-Id: I83cfc2d339c5327f29e952042ecd91e713a5ca68
diff --git a/third_party/matplotlib-cpp/BUILD b/third_party/matplotlib-cpp/BUILD
new file mode 100644
index 0000000..9d21f21
--- /dev/null
+++ b/third_party/matplotlib-cpp/BUILD
@@ -0,0 +1,34 @@
+licenses(["notice"])
+
+cc_library(
+    name = "matplotlib-cpp",
+    hdrs = [
+        "matplotlibcpp.h"
+    ],
+    deps = [
+        "@usr_repo//:python2.7_lib",
+    ],
+    restricted_to = ["//tools:k8"],
+)
+
+cc_binary(
+    name = "basic_example",
+    srcs = [
+        "examples/basic.cpp",
+    ],
+    deps = [
+        "matplotlib-cpp",
+    ],
+    restricted_to = ["//tools:k8"],
+)
+
+cc_binary(
+    name = "animation_example",
+    srcs = [
+        "examples/animation.cpp",
+    ],
+    deps = [
+        "matplotlib-cpp",
+    ],
+    restricted_to = ["//tools:k8"],
+)