Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions ossm/bazelrc-vendor
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ build --override_repository=io_opentelemetry_cpp=/work/ossm/vendor/io_openteleme
build --override_repository=jq_toolchains=/work/ossm/vendor/jq_toolchains
build --override_repository=net_zlib=/work/ossm/vendor/net_zlib
build --override_repository=ocp=/work/ossm/vendor/ocp
build --override_repository=openssl=/work/ossm/vendor/openssl
build --override_repository=opentelemetry_proto=/work/ossm/vendor/opentelemetry_proto
build --override_repository=org_brotli=/work/ossm/vendor/org_brotli
build --override_repository=org_golang_google_protobuf=/work/ossm/vendor/org_golang_google_protobuf
Expand Down
1 change: 0 additions & 1 deletion ossm/scripts/update-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ function init(){
"local_config"
"local_jdk"
"bazel_gazelle_go"
"openssl"
"go_sdk"
"host_platform"
"remotejdk"
Expand Down
6 changes: 6 additions & 0 deletions ossm/vendor/openssl/ACKNOWLEDGEMENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Acknowlegements
===============

Please see our [Thanks!][] page for the current acknowledgements.

[Thanks!]: https://www.openssl.org/community/thanks.html
51 changes: 51 additions & 0 deletions ossm/vendor/openssl/AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
Authors
=======

This is the list of OpenSSL authors for copyright purposes.
It does not necessarily list everyone who has contributed code,
since in some cases, their employer may be the copyright holder.
To see the full list of contributors, see the revision history in
source control.

Groups
------

* OpenSSL Software Services, Inc.
* OpenSSL Software Foundation, Inc.

Individuals
-----------

* Andy Polyakov
* Ben Laurie
* Ben Kaduk
* Bernd Edlinger
* Bodo Möller
* David Benjamin
* David von Oheimb
* Dmitry Belyavskiy (Дмитрий Белявский)
* Emilia Käsper
* Eric Young
* Geoff Thorpe
* Holger Reif
* Kurt Roeckx
* Lutz Jänicke
* Mark J. Cox
* Matt Caswell
* Matthias St. Pierre
* Nicola Tuveri
* Nils Larsch
* Patrick Steuer
* Paul Dale
* Paul C. Sutton
* Paul Yang
* Ralf S. Engelschall
* Rich Salz
* Richard Levitte
* Shane Lontis
* Stephen Henson
* Steve Marquess
* Tim Hudson
* Tomáš Mráz
* Ulf Möller
* Viktor Dukhovni
42 changes: 42 additions & 0 deletions ossm/vendor/openssl/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
load("@rules_foreign_cc//foreign_cc:configure.bzl", "configure_make")

licenses(["notice"]) # Apache 2

filegroup(
name = "all",
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)

configure_make(
name = "openssl",
lib_source = ":all",
configure_in_place = True,
configure_command = "Configure",
configure_options = ["--libdir=lib"],
targets = ["build_sw", "install_sw"],
args = ["-j"],
out_lib_dir = "lib",
out_shared_libs = ["libssl.so.3", "libcrypto.so.3"],
visibility = ["//visibility:public"],
)

filegroup(
name = "libssl",
srcs = [":openssl"],
output_group = "libssl.so.3",
visibility = ["//visibility:private"],
)

filegroup(
name = "libcrypto",
srcs = [":openssl"],
output_group = "libcrypto.so.3",
visibility = ["//visibility:private"],
)

filegroup(
name = "libs",
srcs = [":libssl", ":libcrypto"],
visibility = ["//visibility:public"],
)
Loading