2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-30 16:42:07 +00:00
rules_foreign_cc/examples/third_party/openssl/BUILD.openssl.bazel
UebelAndre e285764b78
Restructed examples and enabled more testing (#515)
* Reorganized examples

* Documentation

* Third party
2021-02-26 20:21:13 +00:00

57 lines
1.3 KiB
Plaintext

"""An openssl build file based on a snippet found in the github issue:
https://github.com/bazelbuild/rules_foreign_cc/issues/337
"""
load("@rules_foreign_cc//tools/build_defs:configure.bzl", "configure_make")
# Read https://wiki.openssl.org/index.php/Compilation_and_Installation
filegroup(
name = "all_srcs",
srcs = glob(["**"]),
)
CONFIGURE_OPTIONS = [
"no-comp",
"no-idea",
"no-weak-ssl-ciphers",
]
configure_make(
name = "openssl",
configure_command = "config",
configure_env_vars = select({
"@platforms//os:macos": {"AR": ""},
"//conditions:default": {},
}),
configure_in_place = True,
configure_options = select({
"@platforms//os:macos": [
"ARFLAGS=r",
"no-afalgeng",
"no-asm",
"no-shared",
] + CONFIGURE_OPTIONS,
"//conditions:default": [
"no-shared",
] + CONFIGURE_OPTIONS,
}),
lib_source = ":all_srcs",
make_commands = [
"make build_libs",
"make install_dev",
],
static_libraries = [
"libcrypto.a",
"libssl.a",
],
visibility = ["//visibility:public"],
)
filegroup(
name = "gen_dir",
srcs = [":openssl"],
output_group = "gen_dir",
visibility = ["//visibility:public"],
)