forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
80 lines (63 loc) · 1.2 KB
/
WORKSPACE
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
workspace(name = "envoy")
load("//bazel:repositories.bzl", "envoy_dependencies")
envoy_dependencies()
bind(
name = "ares",
actual = "@cares_git//:ares",
)
bind(
name = "cc_wkt_protos_genproto",
actual = "@protobuf_git//:cc_wkt_protos_genproto",
)
bind(
name = "cc_wkt_protos",
actual = "@protobuf_git//:cc_wkt_protos",
)
bind(
name = "event",
actual = "@libevent_git//:event",
)
bind(
name = "event_pthreads",
actual = "@libevent_git//:event_pthreads",
)
bind(
name = "googletest",
actual = "@googletest_git//:googletest",
)
bind(
name = "http_parser",
actual = "@http_parser_git//:http_parser",
)
bind(
name = "lightstep",
actual = "@lightstep_git//:lightstep_core",
)
bind(
name = "nghttp2",
actual = "@nghttp2_tar//:nghttp2",
)
bind(
name = "protobuf",
actual = "@protobuf_git//:protobuf",
)
bind(
name = "protoc",
actual = "@protobuf_git//:protoc",
)
bind(
name = "rapidjson",
actual = "@rapidjson_git//:rapidjson",
)
bind(
name = "spdlog",
actual = "@spdlog_git//:spdlog",
)
bind(
name = "ssl",
actual = "@boringssl//:ssl",
)
bind(
name = "tclap",
actual = "@tclap_archive//:tclap",
)