Skip to content

Commit

Permalink
Bind absl_* build targets referenced by v8 build rules
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Warres <[email protected]>
  • Loading branch information
mpwarres committed Aug 16, 2024
1 parent 7a8976b commit b2f6c54
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit b2f6c54

Please sign in to comment.