Philipp Schrader | e8ad638 | 2017-04-09 21:51:21 +0000 | [diff] [blame^] | 1 | cc_library( |
2 | name = 'interpolation', | ||||
3 | hdrs = [ | ||||
4 | 'interpolation.h', | ||||
5 | ], | ||||
6 | srcs = [ | ||||
7 | 'interpolation.cc', | ||||
8 | ], | ||||
9 | ) | ||||
10 | |||||
11 | cc_test( | ||||
12 | name = 'interpolation_test', | ||||
13 | srcs = [ | ||||
14 | 'interpolation_test.cc', | ||||
15 | ], | ||||
16 | deps = [ | ||||
17 | ':interpolation', | ||||
18 | '//aos/testing:googletest', | ||||
19 | ] | ||||
20 | ) |