blob: 9d21f21b469958a67f732d09a0d8a014babc2dd6 [file] [log] [blame]
Austin Schuh85fc6f12018-01-23 21:59:43 -08001licenses(["notice"])
2
3cc_library(
4 name = "matplotlib-cpp",
5 hdrs = [
6 "matplotlibcpp.h"
7 ],
8 deps = [
9 "@usr_repo//:python2.7_lib",
10 ],
11 restricted_to = ["//tools:k8"],
12)
13
14cc_binary(
15 name = "basic_example",
16 srcs = [
17 "examples/basic.cpp",
18 ],
19 deps = [
20 "matplotlib-cpp",
21 ],
22 restricted_to = ["//tools:k8"],
23)
24
25cc_binary(
26 name = "animation_example",
27 srcs = [
28 "examples/animation.cpp",
29 ],
30 deps = [
31 "matplotlib-cpp",
32 ],
33 restricted_to = ["//tools:k8"],
34)