github.com/distbuild/reclient@v0.0.0-20240401075343-3de72e395564/cmd/scandeps/server/BUILD.bazel (about)

     1  cc_library(
     2      name = "scandeps_server_lib",
     3      srcs = [
     4          "scandeps.h",
     5          "server.cc",
     6          "server.h",
     7      ],
     8      hdrs = ["scandeps.h"],
     9      tags = ["manual"],
    10      visibility = ["//:__subpackages__"],
    11      deps = [
    12          "//api/scandeps:scandeps_cc",
    13          "@com_github_grpc_grpc//:grpc++",
    14      ] + select({
    15          "@platforms//os:windows": [
    16              "@com_github_google_glog//:glog",
    17          ],
    18          "//conditions:default": [
    19              "@goma//:glog",
    20          ],
    21      }),
    22  )