blob: 85249c04a43351a999d235cb5cd16bb1f0d1f54c [file] [log] [blame]
licenses(["notice"])
cc_library(
name = "matplotlib-cpp",
hdrs = [
"matplotlibcpp.h",
],
restricted_to = ["//tools:k8"],
visibility = ["//visibility:public"],
deps = [
"@python_repo//:python2.7_lib",
],
)
cc_binary(
name = "basic_example",
srcs = [
"examples/basic.cpp",
],
restricted_to = ["//tools:k8"],
deps = [
"matplotlib-cpp",
],
)
cc_binary(
name = "animation_example",
srcs = [
"examples/animation.cpp",
],
restricted_to = ["//tools:k8"],
deps = [
"matplotlib-cpp",
],
)