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 | ], | ||||
Philipp Schrader | 9a83336 | 2017-04-09 22:56:16 +0000 | [diff] [blame^] | 9 | visibility = ['//visibility:public'], |
Philipp Schrader | e8ad638 | 2017-04-09 21:51:21 +0000 | [diff] [blame] | 10 | ) |
11 | |||||
12 | cc_test( | ||||
13 | name = 'interpolation_test', | ||||
14 | srcs = [ | ||||
15 | 'interpolation_test.cc', | ||||
16 | ], | ||||
17 | deps = [ | ||||
18 | ':interpolation', | ||||
19 | '//aos/testing:googletest', | ||||
20 | ] | ||||
21 | ) |