blob: 8a63f5d1da675009564cbd7460650a0313952f7c [file] [log] [blame]
Philipp Schradere8ad6382017-04-09 21:51:21 +00001cc_library(
Austin Schuh8e17be92019-12-24 09:32:11 -08002 name = "interpolation",
3 srcs = [
4 "interpolation.cc",
5 ],
6 hdrs = [
7 "interpolation.h",
8 ],
Philipp Schraderdada1072020-11-24 11:34:46 -08009 target_compatible_with = ["@platforms//os:linux"],
Austin Schuh8e17be92019-12-24 09:32:11 -080010 visibility = ["//visibility:public"],
Philipp Schradere8ad6382017-04-09 21:51:21 +000011)
12
13cc_test(
Austin Schuh8e17be92019-12-24 09:32:11 -080014 name = "interpolation_test",
15 srcs = [
16 "interpolation_test.cc",
17 ],
Philipp Schraderdada1072020-11-24 11:34:46 -080018 target_compatible_with = ["@platforms//os:linux"],
Austin Schuh8e17be92019-12-24 09:32:11 -080019 deps = [
20 ":interpolation",
21 "//aos/testing:googletest",
22 ],
Philipp Schradere8ad6382017-04-09 21:51:21 +000023)