forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
27 lines (21 loc) · 810 Bytes
/
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
workspace(name = "ci")
load("//bazel:repositories.bzl", "envoy_dependencies")
load("//bazel:cc_configure.bzl", "cc_configure")
# We shouldn't need this, but it's a workaround for https://github.com/bazelbuild/bazel/issues/3580.
local_repository(
name = "envoy",
path = "/source",
)
envoy_dependencies(
path = "@envoy//ci/prebuilt",
)
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()