blob: 85249c04a43351a999d235cb5cd16bb1f0d1f54c [file] [log] [blame]
Austin Schuh85fc6f12018-01-23 21:59:43 -08001licenses(["notice"])
2
3cc_library(
4 name = "matplotlib-cpp",
5 hdrs = [
Austin Schuhdde64052019-12-11 20:28:00 -08006 "matplotlibcpp.h",
Austin Schuh85fc6f12018-01-23 21:59:43 -08007 ],
Austin Schuhdde64052019-12-11 20:28:00 -08008 restricted_to = ["//tools:k8"],
9 visibility = ["//visibility:public"],
Austin Schuh85fc6f12018-01-23 21:59:43 -080010 deps = [
Philipp Schrader9fc87e02018-03-10 20:36:39 -080011 "@python_repo//:python2.7_lib",
Austin Schuh85fc6f12018-01-23 21:59:43 -080012 ],
Austin Schuh85fc6f12018-01-23 21:59:43 -080013)
14
15cc_binary(
16 name = "basic_example",
17 srcs = [
18 "examples/basic.cpp",
19 ],
Austin Schuhdde64052019-12-11 20:28:00 -080020 restricted_to = ["//tools:k8"],
Austin Schuh85fc6f12018-01-23 21:59:43 -080021 deps = [
22 "matplotlib-cpp",
23 ],
Austin Schuh85fc6f12018-01-23 21:59:43 -080024)
25
26cc_binary(
27 name = "animation_example",
28 srcs = [
29 "examples/animation.cpp",
30 ],
Austin Schuhdde64052019-12-11 20:28:00 -080031 restricted_to = ["//tools:k8"],
Austin Schuh85fc6f12018-01-23 21:59:43 -080032 deps = [
33 "matplotlib-cpp",
34 ],
Austin Schuh85fc6f12018-01-23 21:59:43 -080035)