forked from 3rdparty/eventuals-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
29 lines (28 loc) · 899 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "grpc",
srcs = [
"stout/grpc/server.cc",
],
hdrs = [
"stout/grpc/call-type.h",
"stout/grpc/client.h",
"stout/grpc/cluster.h",
"stout/grpc/completion-pool.h",
"stout/grpc/handler.h",
"stout/grpc/logging.h",
"stout/grpc/server.h",
"stout/grpc/traits.h",
],
visibility = ["//visibility:public"],
deps = [
"@com_github_3rdparty_stout_borrowed_ptr//:borrowed_ptr",
"@com_github_3rdparty_stout_eventuals//:eventuals",
"@com_github_3rdparty_stout_notification//:notification",
"@com_github_google_glog//:glog",
"@com_github_grpc_grpc//:grpc++",
"@com_google_absl//absl/base",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/synchronization",
],
)