Expose root_certifications in BUILD file

I'd like to be able to grab the root_certificates and use them in my build process to bundle them as part of my package I ship to prod, and this prevents me from having two repos for gRPC, one having a custom BUILD file that allows me to grab the roots.pem file, which is what I do now to add this into our build process.
pull/18679/head
Tyler Rockwood 6 years ago committed by GitHub
parent 597714b6a7
commit 9365b606b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      BUILD

@ -2454,3 +2454,11 @@ grpc_cc_library(
)
grpc_generate_one_off_targets()
filegroup(
name = "root_certificates",
srcs = [
"etc/roots.pem",
],
visibility = ["//visibility:public"],
)

Loading…
Cancel
Save