blob: 7f5d25ad118fff7a2eb4db3ead1d85e00675834b [file] [log] [blame]
Brian Silverman049dcb62015-09-27 19:08:00 -04001py_binary(
Austin Schuh86cd5722019-04-14 13:34:20 -07002 name = "gen_embedded",
3 srcs = [
4 "gen_embedded.py",
5 ],
Philipp Schraderdada1072020-11-24 11:34:46 -08006 target_compatible_with = ["@platforms//os:linux"],
Austin Schuh86cd5722019-04-14 13:34:20 -07007 visibility = ["//visibility:public"],
8)
9
10cc_library(
11 name = "seasocks_logger",
12 srcs = ["seasocks_logger.cc"],
13 hdrs = ["seasocks_logger.h"],
Philipp Schraderdada1072020-11-24 11:34:46 -080014 target_compatible_with = ["@platforms//os:linux"],
Austin Schuh86cd5722019-04-14 13:34:20 -070015 visibility = ["//visibility:public"],
16 deps = [
Austin Schuh86cd5722019-04-14 13:34:20 -070017 "//third_party/seasocks",
Brian Silverman5241b4e2021-11-04 19:19:14 -070018 "@com_github_google_glog//:glog",
Austin Schuh86cd5722019-04-14 13:34:20 -070019 ],
Brian Silverman049dcb62015-09-27 19:08:00 -040020)