blob: cce93e177f22102e8fc8483beb050854f5983743 [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 ],
9 visibility = ["//visibility:public"],
Philipp Schradere8ad6382017-04-09 21:51:21 +000010)
11
12cc_test(
Austin Schuh8e17be92019-12-24 09:32:11 -080013 name = "interpolation_test",
14 srcs = [
15 "interpolation_test.cc",
16 ],
17 deps = [
18 ":interpolation",
19 "//aos/testing:googletest",
20 ],
Philipp Schradere8ad6382017-04-09 21:51:21 +000021)