blob: a452e8fa0c80e6ead1f72ee9bfe0e01f4e213c44 [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',
13 '//aos/common:once',
14 '//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)