blob: 3509040200de1413212cd8518f4b218b400d314b [file] [log] [blame]
Philipp Schradere8ad6382017-04-09 21:51:21 +00001cc_library(
2 name = 'interpolation',
3 hdrs = [
4 'interpolation.h',
5 ],
6 srcs = [
7 'interpolation.cc',
8 ],
Philipp Schrader9a833362017-04-09 22:56:16 +00009 visibility = ['//visibility:public'],
Philipp Schradere8ad6382017-04-09 21:51:21 +000010)
11
12cc_test(
13 name = 'interpolation_test',
14 srcs = [
15 'interpolation_test.cc',
16 ],
17 deps = [
18 ':interpolation',
19 '//aos/testing:googletest',
20 ]
21)