From b2f6c54dbf54730be796898c27b26e75715fca61 Mon Sep 17 00:00:00 2001 From: Michael Warres Date: Fri, 16 Aug 2024 18:28:10 +0000 Subject: [PATCH] Bind absl_* build targets referenced by v8 build rules Signed-off-by: Michael Warres --- bazel/repositories.bzl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index e47e89eb..5e92fe9c 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -176,6 +176,26 @@ def proxy_wasm_cpp_host_repositories(): actual = "@v8//:wee8", ) + native.bind( + name = "absl_optional", + actual = "@com_google_absl//absl/types:optional", + ) + + native.bind( + name = "absl_btree", + actual = "@com_google_absl//absl/container:btree", + ) + + native.bind( + name = "absl_flat_hash_map", + actual = "@com_google_absl//absl/container:flat_hash_map", + ) + + native.bind( + name = "absl_flat_hash_set", + actual = "@com_google_absl//absl/container:flat_hash_set", + ) + # WAMR with dependencies. maybe(