Philipp Schrader | e8ad638 | 2017-04-09 21:51:21 +0000 | [diff] [blame] | 1 | cc_library( |
Austin Schuh | 8e17be9 | 2019-12-24 09:32:11 -0800 | [diff] [blame] | 2 | name = "interpolation", |
| 3 | srcs = [ |
| 4 | "interpolation.cc", |
| 5 | ], |
| 6 | hdrs = [ |
| 7 | "interpolation.h", |
| 8 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame^] | 9 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 8e17be9 | 2019-12-24 09:32:11 -0800 | [diff] [blame] | 10 | visibility = ["//visibility:public"], |
Philipp Schrader | e8ad638 | 2017-04-09 21:51:21 +0000 | [diff] [blame] | 11 | ) |
| 12 | |
| 13 | cc_test( |
Austin Schuh | 8e17be9 | 2019-12-24 09:32:11 -0800 | [diff] [blame] | 14 | name = "interpolation_test", |
| 15 | srcs = [ |
| 16 | "interpolation_test.cc", |
| 17 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame^] | 18 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 8e17be9 | 2019-12-24 09:32:11 -0800 | [diff] [blame] | 19 | deps = [ |
| 20 | ":interpolation", |
| 21 | "//aos/testing:googletest", |
| 22 | ], |
Philipp Schrader | e8ad638 | 2017-04-09 21:51:21 +0000 | [diff] [blame] | 23 | ) |