forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
48 lines (42 loc) · 1.07 KB
/
BUILD
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
licenses(["notice"]) # Apache 2
load(
"//bazel:envoy_build_system.bzl",
"envoy_cc_binary",
"envoy_cc_platform_dep",
"envoy_package",
"envoy_py_test_binary",
)
envoy_package()
exports_files([
"gen_git_sha.sh",
"code_format/check_format.py",
"code_format/header_order.py",
"code_format/envoy_build_fixer.py",
"check_repositories.sh",
])
envoy_py_test_binary(
name = "socket_passing",
srcs = [
"socket_passing.py",
],
)
py_library(
name = "run_command",
srcs = [
"run_command.py",
],
srcs_version = "PY3",
visibility = ["//visibility:public"],
)
envoy_cc_binary(
name = "bootstrap2pb",
srcs = ["bootstrap2pb.cc"],
deps = [
"//source/common/api:api_lib",
"//source/common/common:assert_lib",
"//source/common/protobuf:message_validator_lib",
"//source/common/protobuf:utility_lib",
"//source/common/stats:isolated_store_lib",
"@envoy_api//envoy/config/bootstrap/v2:pkg_cc_proto",
] + envoy_cc_platform_dep("//source/exe:platform_impl_lib"),
)