| load("@rules_cc//cc:defs.bzl", "cc_library") | |
| licenses(["notice"]) # Apache 2 | |
| cc_library( | |
| name = "log_shim", | |
| srcs = ["logging.cc"], | |
| hdrs = ["logging.h"], | |
| visibility = ["//visibility:public"], | |
| deps = [ | |
| "@com_github_gabime_spdlog//:spdlog", | |
| "@glog", | |
| ], | |
| ) |