Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_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 | |
| 19 | cc_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 | ) |