| licenses(["notice"]) |
| |
| cc_library( |
| name = "matplotlib-cpp", |
| hdrs = [ |
| "matplotlibcpp.h", |
| ], |
| data = [ |
| "@matplotlib_repo//:matplotlib3", |
| "@python_repo//:all_files", |
| ], |
| restricted_to = ["//tools:k8"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| "@python_repo//:python3.5_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", |
| ], |
| ) |