Commit 649e9113 authored by Victor Gomes's avatar Victor Gomes Committed by V8 LUCI CQ

[bazel] Adds support to abseil

No-Try: true
Bug: v8:11006
Change-Id: Ie2758849fcb8b19ae34289d3e762094b062f2a5c
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3168644Reviewed-by: 's avatarDan Elphick <delphick@chromium.org>
Commit-Queue: Victor Gomes <victorgomes@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76938}
parent 2f48fa11
......@@ -3003,6 +3003,7 @@ v8_library(
":v8_shared_internal_headers",
":v8_libbase_files",
],
deps = [ "@com_google_absl//absl/types:optional" ],
)
v8_library(
......@@ -3070,7 +3071,10 @@ v8_binary(
"src/regexp/special-case.h",
"src/regexp/gen-regexp-special-case.cc",
],
deps = [ "@icu" ],
deps = [
"@icu",
"@com_google_absl//absl/types:optional",
],
)
v8_binary(
......
......@@ -16,6 +16,11 @@ http_archive(
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
local_repository(
name = "com_google_absl",
path = "third_party/abseil-cpp",
)
new_local_repository(
name = "zlib",
path = "third_party/zlib",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment