File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ package_group(
32
32
"//test/extensions/..." ,
33
33
"//test/server" ,
34
34
"//test/server/config_validation" ,
35
- "//test/tools/schema_validator/ ..." ,
35
+ "//test/tools/..." ,
36
36
"//tools/extensions/..." ,
37
37
],
38
38
)
Original file line number Diff line number Diff line change 5
5
"envoy_package" ,
6
6
"envoy_proto_library" ,
7
7
)
8
+ load ("//source/extensions:all_extensions.bzl" , "envoy_all_extensions" )
9
+ load ("//bazel:repositories.bzl" , "PPC_SKIP_TARGETS" , "WINDOWS_SKIP_TARGETS" )
8
10
9
11
licenses (["notice" ]) # Apache 2
10
12
@@ -13,7 +15,12 @@ envoy_package()
13
15
envoy_cc_test_binary (
14
16
name = "router_check_tool" ,
15
17
srcs = ["router_check.cc" ],
16
- deps = [":router_check_main_lib" ],
18
+ deps = [":router_check_main_lib" ] + select ({
19
+ "//bazel:coverage_build" : [],
20
+ "//bazel:windows_x86_64" : envoy_all_extensions (WINDOWS_SKIP_TARGETS ),
21
+ "//bazel:linux_ppc" : envoy_all_extensions (PPC_SKIP_TARGETS ),
22
+ "//conditions:default" : envoy_all_extensions (),
23
+ }),
17
24
)
18
25
19
26
envoy_cc_test_library (
You can’t perform that action at this time.
0 commit comments