blob: 3509040200de1413212cd8518f4b218b400d314b [file] [log] [blame]
Philipp Schradere8ad6382017-04-09 21:51:21 +00001cc_library(
James Kuszmaul41fa78a2019-12-14 20:53:14 -08002 name = 'interpolation',
3 hdrs = [
4 'interpolation.h',
5 ],
6 srcs = [
7 'interpolation.cc',
8 ],
9 visibility = ['//visibility:public'],
Philipp Schradere8ad6382017-04-09 21:51:21 +000010)
11
12cc_test(
James Kuszmaul41fa78a2019-12-14 20:53:14 -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)