-
Notifications
You must be signed in to change notification settings - Fork 4
/
WORKSPACE
38 lines (28 loc) · 1.17 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
workspace(name="consul_connect_filter")
# Use skylark for native Git.
load('@bazel_tools//tools/build_defs/repo:git.bzl', 'git_repository')
ENVOY_SHA = "45b90082918b4aed4e3c53a2a5cf79ba1b206505" # 2018-08-10
http_archive(
name = "envoy",
strip_prefix = "envoy-" + ENVOY_SHA,
url = "https://github.com/envoyproxy/envoy/archive/" + ENVOY_SHA + ".zip",
)
ENVOY_COMMON_SHA = "79194c3b1ce1d5c7e5bb84ada2cc757efef36180" # July 15, 2018 (Upgrade Envoy)
git_repository(
name = "solo_envoy_common",
remote = "git@github.com:solo-io/envoy-common",
commit = ENVOY_COMMON_SHA,
)
load("@envoy//bazel:repositories.bzl", "envoy_dependencies")
load("@envoy//bazel:cc_configure.bzl", "cc_configure")
envoy_dependencies()
cc_configure()
load("@envoy_api//bazel:repositories.bzl", "api_dependencies")
api_dependencies()
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
load("@com_lyft_protoc_gen_validate//bazel:go_proto_library.bzl", "go_proto_repositories")
go_proto_repositories(shared=0)
go_rules_dependencies()
go_register_toolchains()
load("@io_bazel_rules_go//proto:def.bzl", "proto_register_toolchains")
proto_register_toolchains()