blob: c5476b2e27a7db02f0e6de953ecd0f01efc1a97a [file] [log] [blame]
Brian Silverman100534c2015-09-07 15:51:23 -04001package(default_visibility = ['//visibility:public'])
2
3cc_library(
4 name = 'team_number',
5 srcs = [
6 'team_number.cc',
7 ],
8 hdrs = [
9 'team_number.h',
10 ],
11 deps = [
12 '//aos/linux_code:configuration',
Sabina Davis2ed5ea22017-09-26 22:27:42 -070013 '//aos:once',
Brian Silverman100534c2015-09-07 15:51:23 -040014 '//aos/common/logging',
15 '//aos/common/util:string_to_num',
16 ],
17)
18
19cc_library(
20 name = 'socket',
21 srcs = [
22 'receive_socket.cc',
23 'send_socket.cc',
24 'socket.cc',
25 ],
26 hdrs = [
27 'receive_socket.h',
28 'send_socket.h',
29 'socket.h',
30 ],
31 deps = [
32 '//aos/common/logging',
33 '//aos/common:time',
34 '//aos/common/util:inet_addr',
35 '//aos/linux_code:configuration',
36 ],
37)
Austin Schuhdf5591e2015-12-19 22:36:50 -080038
39cc_test(
40 name = 'team_number_test',
41 srcs = [
42 'team_number_test.cc',
43 ],
44 deps = [
45 ':team_number',
46 '//aos/testing:googletest',
Austin Schuhdf5591e2015-12-19 22:36:50 -080047 ],
48)
49