Skip to content

Commit

Permalink
Add necessary third party libs
Browse files Browse the repository at this point in the history
Summary: These are necessary to buck build fizz

Reviewed By: bigfootjon

Differential Revision: D57915931
  • Loading branch information
namanahuja authored and facebook-github-bot committed May 29, 2024
1 parent eddf3dc commit 8c662d0
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 0 deletions.
22 changes: 22 additions & 0 deletions shim/third-party/brotli/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under both the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree and the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.

load("@shim//third-party:third_party.bzl", "third_party_library")

oncall("open_source")

third_party_library(
name = "brotlidec",
homebrew_package_name = "brotli",
pkgconfig_name = "libbrotlidec",
)

third_party_library(
name = "brotlienc",
homebrew_package_name = "brotli",
pkgconfig_name = "libbrotlienc",
)
15 changes: 15 additions & 0 deletions shim/third-party/jvm/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under both the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree and the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.

load("@shim//third-party:third_party.bzl", "third_party_library")

oncall("open_source")

third_party_library(
name = "jvm",
homebrew_package_name = "openjdk",
)
15 changes: 15 additions & 0 deletions shim/third-party/libaegis/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under both the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree and the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.

load("@shim//third-party:third_party.bzl", "third_party_library")

oncall("open_source")

third_party_library(
name = "aegis",
pkgconfig_name = "libaegis",
)
15 changes: 15 additions & 0 deletions shim/third-party/liboqs/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under both the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree and the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree.

load("@shim//third-party:third_party.bzl", "third_party_library")

oncall("open_source")

third_party_library(
name = "oqs",
pkgconfig_name = "liboqs",
)

0 comments on commit 8c662d0

Please sign in to comment.