Skip to content

Commit 4614adf

Browse files
committed
Bind absl_* build targets referenced by v8 build rules
Signed-off-by: Michael Warres <[email protected]>
1 parent ce012d6 commit 4614adf

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

bazel/repositories.bzl

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,26 @@ def proxy_wasm_cpp_host_repositories():
176176
actual = "@v8//:wee8",
177177
)
178178

179+
native.bind(
180+
name = "absl_optional",
181+
actual = "@com_google_absl//absl/types:optional",
182+
)
183+
184+
native.bind(
185+
name = "absl_btree",
186+
actual = "@com_google_absl//absl/container:btree",
187+
)
188+
189+
native.bind(
190+
name = "absl_flat_hash_map",
191+
actual = "@com_google_absl//absl/container:flat_hash_map",
192+
)
193+
194+
native.bind(
195+
name = "absl_flat_hash_set",
196+
actual = "@com_google_absl//absl/container:flat_hash_set",
197+
)
198+
179199
# WAMR with dependencies.
180200

181201
maybe(

0 commit comments

Comments
 (0)