forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
67 lines (59 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
licenses(["notice"]) # Apache 2
exports_files([
"VERSION.txt",
"API_VERSION.txt",
".clang-format",
"pytest.ini",
".coveragerc",
])
alias(
name = "envoy",
actual = "//source/exe:envoy",
)
alias(
name = "envoy.stripped",
actual = "//source/exe:envoy-static.stripped",
)
# These two definitions exist to help reduce Envoy upstream core code depending on extensions.
# To avoid visibility problems, see notes in source/extensions/extensions_build_config.bzl
#
# TODO(#9953) //test/config_test:__pkg__ should probably be split up and removed.
# TODO(#9953) the config fuzz tests should be moved somewhere local and //test/config_test and //test/server removed.
package_group(
name = "extension_config",
packages = [
"//source/exe",
"//source/extensions/...",
"//test/config_test",
"//test/extensions/...",
"//test/server",
"//test/server/config_validation",
"//test/tools/...",
"//tools/extensions/...",
],
)
package_group(
name = "extension_library",
packages = [
"//source/extensions/...",
"//test/extensions/...",
],
)
package_group(
name = "contrib_library",
packages = [
"//contrib/...",
],
)
package_group(
name = "examples_library",
packages = [
"//examples/...",
],
)
package_group(
name = "mobile_library",
packages = [
"//mobile/...",
],
)