blob: 9d21f21b469958a67f732d09a0d8a014babc2dd6 [file] [log] [blame]
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"],
)