Brian Silverman | 049dcb6 | 2015-09-27 19:08:00 -0400 | [diff] [blame] | 1 | py_binary( |
Austin Schuh | 86cd572 | 2019-04-14 13:34:20 -0700 | [diff] [blame] | 2 | name = "gen_embedded", |
| 3 | srcs = [ |
| 4 | "gen_embedded.py", |
| 5 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 6 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 86cd572 | 2019-04-14 13:34:20 -0700 | [diff] [blame] | 7 | visibility = ["//visibility:public"], |
| 8 | ) |
| 9 | |
| 10 | cc_library( |
| 11 | name = "seasocks_logger", |
| 12 | srcs = ["seasocks_logger.cc"], |
| 13 | hdrs = ["seasocks_logger.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 14 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 86cd572 | 2019-04-14 13:34:20 -0700 | [diff] [blame] | 15 | visibility = ["//visibility:public"], |
| 16 | deps = [ |
Austin Schuh | 86cd572 | 2019-04-14 13:34:20 -0700 | [diff] [blame] | 17 | "//third_party/seasocks", |
Brian Silverman | 5241b4e | 2021-11-04 19:19:14 -0700 | [diff] [blame] | 18 | "@com_github_google_glog//:glog", |
Austin Schuh | 86cd572 | 2019-04-14 13:34:20 -0700 | [diff] [blame] | 19 | ], |
Brian Silverman | 049dcb6 | 2015-09-27 19:08:00 -0400 | [diff] [blame] | 20 | ) |