Austin Schuh | 85fc6f1 | 2018-01-23 21:59:43 -0800 | [diff] [blame] | 1 | licenses(["notice"]) |
| 2 | |
| 3 | cc_library( |
| 4 | name = "matplotlib-cpp", |
| 5 | hdrs = [ |
| 6 | "matplotlibcpp.h" |
| 7 | ], |
| 8 | deps = [ |
Philipp Schrader | 9fc87e0 | 2018-03-10 20:36:39 -0800 | [diff] [blame] | 9 | "@python_repo//:python2.7_lib", |
Austin Schuh | 85fc6f1 | 2018-01-23 21:59:43 -0800 | [diff] [blame] | 10 | ], |
Austin Schuh | f8f9502 | 2018-01-28 20:01:10 -0800 | [diff] [blame] | 11 | visibility = ["//visibility:public"], |
Austin Schuh | 85fc6f1 | 2018-01-23 21:59:43 -0800 | [diff] [blame] | 12 | restricted_to = ["//tools:k8"], |
| 13 | ) |
| 14 | |
| 15 | cc_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 | |
| 26 | cc_binary( |
| 27 | name = "animation_example", |
| 28 | srcs = [ |
| 29 | "examples/animation.cpp", |
| 30 | ], |
| 31 | deps = [ |
| 32 | "matplotlib-cpp", |
| 33 | ], |
| 34 | restricted_to = ["//tools:k8"], |
| 35 | ) |