File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
load("@rules_foreign_cc//foreign_cc:configure.bzl", "configure_make")
2
- load("@rules_cc//cc:defs .bzl", "cc_library ")
2
+ load("@envoy//bazel:envoy_build_system .bzl", "envoy_cc_library ")
3
3
4
4
licenses(["notice"]) # Apache 2
5
5
@@ -22,15 +22,20 @@ configure_make(
22
22
out_include_dir = "include",
23
23
)
24
24
25
- cc_library (
25
+ envoy_cc_library (
26
26
name = "ssl",
27
27
deps = [":openssl"],
28
- includes = ["include"],
28
+ repository = "@envoy",
29
+ rbe_pool = "6gig",
29
30
visibility = ["//visibility:public"],
31
+ srcs = [":openssl"],
30
32
)
31
33
32
- cc_library (
34
+ envoy_cc_library (
33
35
name = "crypto",
34
36
deps = [":openssl"],
37
+ repository = "@envoy",
38
+ rbe_pool = "6gig",
35
39
visibility = ["//visibility:public"],
40
+ srcs = [":openssl"],
36
41
)
Original file line number Diff line number Diff line change @@ -259,6 +259,7 @@ envoy_directory_genrule(
259
259
# This is deliberately in srcs, since we run into host/target confusion
260
260
# otherwise in oss-fuzz builds.
261
261
":config_impl_test_static" ,
262
+ "@openssl//:ssl" ,
262
263
],
263
264
cmd = " " .join ([
264
265
"$(location corpus_from_config_impl_sh)" ,
You can’t perform that action at this time.
0 commit comments