blob: 3d3959c803775fb19606fff56ffc2ef29c5874b0 [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 = [
Philipp Schrader9fc87e02018-03-10 20:36:39 -08009 "@python_repo//:python2.7_lib",
Austin Schuh85fc6f12018-01-23 21:59:43 -080010 ],
Austin Schuhf8f95022018-01-28 20:01:10 -080011 visibility = ["//visibility:public"],
Austin Schuh85fc6f12018-01-23 21:59:43 -080012 restricted_to = ["//tools:k8"],
13)
14
15cc_binary(
16 name = "basic_example",
17 srcs = [
18 "examples/basic.cpp",
19 ],
20 deps = [
21 "matplotlib-cpp",
22 ],
23 restricted_to = ["//tools:k8"],
24)
25
26cc_binary(
27 name = "animation_example",
28 srcs = [
29 "examples/animation.cpp",
30 ],
31 deps = [
32 "matplotlib-cpp",
33 ],
34 restricted_to = ["//tools:k8"],
35)