Skip to content

Commit 2fe7335

Browse files
garrettgu10jasnell
andauthored
update v8 to 12.4 (#2005)
Co-authored-by: James M Snell <[email protected]>
1 parent cdb18b7 commit 2fe7335

22 files changed

+237
-470
lines changed

WORKSPACE

+21-8
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ git_repository(
144144
build_file = "//:build/BUILD.dawn",
145145
commit = "c5169ef5b9982e17a8caddd1218aa0ad5e24a4e3",
146146
remote = "https://dawn.googlesource.com/dawn.git",
147+
patches = [
148+
"//:patches/dawn/0001-Add-iomanip.patch",
149+
"//:patches/dawn/0002-Add-missing-array-import.patch",
150+
],
151+
patch_args = ["-p1"],
147152
repo_mapping = {
148153
"@abseil_cpp": "@com_google_absl",
149154
},
@@ -186,10 +191,17 @@ http_archive(
186191
# to confusing compiler errors in tcmalloc in the past.
187192
git_repository(
188193
name = "com_google_absl",
189-
commit = "0764ad493e54a79c7e3e02fc3412ef55b4835b9e",
194+
commit = "b3ae305fd5dbc6ad41eed9add26768c29181219f",
190195
remote = "https://chromium.googlesource.com/chromium/src/third_party/abseil-cpp.git",
191196
)
192197

198+
git_repository(
199+
name = "fp16",
200+
commit = "0a92994d729ff76a58f692d3028ca1b64b145d91",
201+
build_file_content = "exports_files(glob([\"**\"]))",
202+
remote = "https://chromium.googlesource.com/external/github.com/Maratyszcza/FP16.git"
203+
)
204+
193205
# Bindings for abseil libraries used by V8
194206
[
195207
bind(
@@ -451,15 +463,16 @@ http_archive(
451463
"//:patches/v8/0010-Enable-V8-shared-linkage.patch",
452464
"//:patches/v8/0011-Randomize-the-initial-ExecutionContextId-used-by-the.patch",
453465
"//:patches/v8/0012-Always-enable-continuation-preserved-data-in-the-bui.patch",
454-
"//:patches/v8/0013-Attach-continuation-context-to-Promise-thenable-task.patch",
455-
"//:patches/v8/0014-increase-visibility-of-virtual-method.patch",
456-
"//:patches/v8/0015-Add-ValueSerializer-SetTreatFunctionsAsHostObjects.patch",
457-
"//:patches/v8/0016-wasm-liftoff-arm64-Fix-LoadTaggedPointer.patch",
466+
"//:patches/v8/0013-increase-visibility-of-virtual-method.patch",
467+
"//:patches/v8/0014-Add-ValueSerializer-SetTreatFunctionsAsHostObjects.patch",
468+
"//:patches/v8/0015-Set-torque-generator-path-to-external-v8.-This-allow.patch",
469+
"//:patches/v8/0016-Modify-where-to-look-for-fp16-dependency.-This-depen.patch",
470+
"//:patches/v8/0017-Fixup-RunMicrotask-to-restore-async-context-on-termi.patch",
458471
],
459-
integrity = "sha256-QphdaJn35eZeo+qoayNFIgm02hX5WHjKf+pr3WXCiEs=",
460-
strip_prefix = "v8-12.3.219.10",
472+
integrity = "sha256-C6bsXXbKgeCxmG1VNO/LScaPq0HVlmofpVHJ5kswoLg=",
473+
strip_prefix = "v8-12.4.254.11",
461474
type = "tgz",
462-
url = "https://github.com/v8/v8/archive/refs/tags/12.3.219.10.tar.gz",
475+
url = "https://github.com/v8/v8/archive/refs/tags/12.4.254.11.tar.gz",
463476
)
464477

465478
git_repository(

patches/dawn/0001-Add-iomanip.patch

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
From 37bc132e418017ff70e5c5a4562c457c2064f49b Mon Sep 17 00:00:00 2001
2+
From: James M Snell <[email protected]>
3+
Date: Mon, 29 Apr 2024 13:22:55 -0700
4+
Subject: Add iomanip
5+
6+
7+
diff --git a/src/dawn/native/stream/ByteVectorSink.cpp b/src/dawn/native/stream/ByteVectorSink.cpp
8+
--- a/src/dawn/native/stream/ByteVectorSink.cpp
9+
+++ b/src/dawn/native/stream/ByteVectorSink.cpp
10+
@@ -27,6 +27,7 @@
11+
12+
#include "dawn/native/stream/ByteVectorSink.h"
13+
14+
+#include <iomanip>
15+
#include "dawn/native/stream/Stream.h"
16+
17+
namespace dawn::native::stream {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
From 340abe0c734899650f10ce19f0a45d8aa4981972 Mon Sep 17 00:00:00 2001
2+
From: James M Snell <[email protected]>
3+
Date: Mon, 29 Apr 2024 14:22:47 -0700
4+
Subject: Add missing array import
5+
6+
7+
diff --git a/src/dawn/native/ApplyClearColorValueWithDrawHelper.h b/src/dawn/native/ApplyClearColorValueWithDrawHelper.h
8+
index a1ff88e07a9572baacf8a96e35d830c318b56777..00b4795b41711a10106cece1bcac2644fcf7dcaa 100644
9+
--- a/src/dawn/native/ApplyClearColorValueWithDrawHelper.h
10+
+++ b/src/dawn/native/ApplyClearColorValueWithDrawHelper.h
11+
@@ -29,6 +29,7 @@
12+
#define SRC_DAWN_NATIVE_APPLYCLEARVALUEWITHDRAWHELPER_H_
13+
14+
#include <bitset>
15+
+#include <array>
16+
#include <unordered_map>
17+
#include "dawn/common/Constants.h"
18+
#include "dawn/native/Error.h"

patches/v8/0001-Allow-manually-setting-ValueDeserializer-format-vers.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From c0e8edbdd404361db740316cd43bc347bfe4730f Mon Sep 17 00:00:00 2001
1+
From 9cd118a8ffa4c2154438f65503e3fdb8c9b1741d Mon Sep 17 00:00:00 2001
22
From: Alex Robinson <[email protected]>
33
Date: Wed, 2 Mar 2022 15:58:04 -0600
44
Subject: Allow manually setting ValueDeserializer format version
@@ -35,10 +35,10 @@ index 0cb3e045bc46ec732956318b980e749d1847d06d..40ad805c7970cc9379e69f046205836d
3535
* Reads raw data in various common formats to the buffer.
3636
* Note that integer types are read in base-128 varint format, not with a
3737
diff --git a/src/api/api.cc b/src/api/api.cc
38-
index 9ca94b045c26c97292ad376c88d794a3dce11660..f3c446b7fe82158dab17c103062ababfb368e50e 100644
38+
index a7070c494c211bec5692767e26ab7bd072b2d6fd..b94dd72c64ef345ca6f13c246c93b7b7191d2cf9 100644
3939
--- a/src/api/api.cc
4040
+++ b/src/api/api.cc
41-
@@ -3691,6 +3691,10 @@ uint32_t ValueDeserializer::GetWireFormatVersion() const {
41+
@@ -3645,6 +3645,10 @@ uint32_t ValueDeserializer::GetWireFormatVersion() const {
4242
return private_->deserializer.GetWireFormatVersion();
4343
}
4444

patches/v8/0002-Allow-manually-setting-ValueSerializer-format-versio.patch

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 6f67b7491de310dbe14586402d03ca489598496c Mon Sep 17 00:00:00 2001
1+
From e235a6aabeddaf28c1214e628c4a41edef552d69 Mon Sep 17 00:00:00 2001
22
From: James M Snell <[email protected]>
33
Date: Wed, 16 Mar 2022 08:59:21 -0700
44
Subject: Allow manually setting ValueSerializer format version
@@ -22,10 +22,10 @@ index 40ad805c7970cc9379e69f046205836dbd760373..596be18adeb3a5a81794aaa44b1d347d
2222
* Writes out a header, which includes the format version.
2323
*/
2424
diff --git a/src/api/api.cc b/src/api/api.cc
25-
index f3c446b7fe82158dab17c103062ababfb368e50e..8418ea61dfcaa87dc68834b2254cdce8e55186ad 100644
25+
index b94dd72c64ef345ca6f13c246c93b7b7191d2cf9..b375bfe4d9a82c4dc2ecae1de9349d02c4dd47aa 100644
2626
--- a/src/api/api.cc
2727
+++ b/src/api/api.cc
28-
@@ -3559,6 +3559,10 @@ ValueSerializer::ValueSerializer(Isolate* v8_isolate, Delegate* delegate)
28+
@@ -3513,6 +3513,10 @@ ValueSerializer::ValueSerializer(Isolate* v8_isolate, Delegate* delegate)
2929

3030
ValueSerializer::~ValueSerializer() { delete private_; }
3131

@@ -37,18 +37,18 @@ index f3c446b7fe82158dab17c103062ababfb368e50e..8418ea61dfcaa87dc68834b2254cdce8
3737

3838
void ValueSerializer::SetTreatArrayBufferViewsAsHostObjects(bool mode) {
3939
diff --git a/src/objects/value-serializer.cc b/src/objects/value-serializer.cc
40-
index 1b2eefa1ea67e0ea9f03641bf2e454a1046cb267..f0b1956253fe603ad6da30a41fb923078ef6bd78 100644
40+
index 50dbe657283d4c22aacef6824eee670281cd164c..f6b3579da294d86b6ad415471e2f29538ed5a629 100644
4141
--- a/src/objects/value-serializer.cc
4242
+++ b/src/objects/value-serializer.cc
43-
@@ -267,6 +267,7 @@ ValueSerializer::ValueSerializer(Isolate* isolate,
43+
@@ -291,6 +291,7 @@ ValueSerializer::ValueSerializer(Isolate* isolate,
4444
: isolate_(isolate),
4545
delegate_(delegate),
4646
zone_(isolate->allocator(), ZONE_NAME),
4747
+ version_(kLatestVersion),
4848
id_map_(isolate->heap(), ZoneAllocationPolicy(&zone_)),
4949
array_buffer_transfer_map_(isolate->heap(),
5050
ZoneAllocationPolicy(&zone_)) {
51-
@@ -286,9 +287,17 @@ ValueSerializer::~ValueSerializer() {
51+
@@ -310,9 +311,17 @@ ValueSerializer::~ValueSerializer() {
5252
}
5353
}
5454

@@ -67,7 +67,7 @@ index 1b2eefa1ea67e0ea9f03641bf2e454a1046cb267..f0b1956253fe603ad6da30a41fb92307
6767
}
6868

6969
void ValueSerializer::SetTreatArrayBufferViewsAsHostObjects(bool mode) {
70-
@@ -1011,10 +1020,12 @@ Maybe<bool> ValueSerializer::WriteJSArrayBufferView(
70+
@@ -1035,10 +1044,12 @@ Maybe<bool> ValueSerializer::WriteJSArrayBufferView(
7171
WriteVarint(static_cast<uint8_t>(tag));
7272
WriteVarint(static_cast<uint32_t>(view->byte_offset()));
7373
WriteVarint(static_cast<uint32_t>(view->byte_length()));

patches/v8/0003-Add-ArrayBuffer-MaybeNew.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 18c53a127e3d83ae49dc0cab45a0ba78e6111ac8 Mon Sep 17 00:00:00 2001
1+
From 831deb67e4977c12667462f3b67efababdd3c411 Mon Sep 17 00:00:00 2001
22
From: Kenton Varda <[email protected]>
33
Date: Fri, 16 Sep 2022 21:41:45 -0500
44
Subject: Add `ArrayBuffer::MaybeNew()`.

patches/v8/0004-Allow-Windows-builds-under-Bazel.patch

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
From 92cd581a93d31cb4f0f06e04a479bb35cc5bab13 Mon Sep 17 00:00:00 2001
1+
From 41767e80304816d674136ce08ab241596e4494ee Mon Sep 17 00:00:00 2001
22
From: Brendan Coll <[email protected]>
33
Date: Thu, 16 Mar 2023 11:56:10 +0000
44
Subject: Allow Windows builds under Bazel
55

66

77
diff --git a/BUILD.bazel b/BUILD.bazel
8-
index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f 100644
8+
index 05b7472165ae858df0a300279c6065c38faf1768..4a914c56851dbd43329829f9b42c9ca500055fc7 100644
99
--- a/BUILD.bazel
1010
+++ b/BUILD.bazel
11-
@@ -777,6 +777,7 @@ filegroup(
11+
@@ -778,6 +778,7 @@ filegroup(
1212
"src/base/platform/mutex.h",
1313
"src/base/platform/platform.cc",
1414
"src/base/platform/platform.h",
@@ -40,7 +40,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
4040
"src/api/api-arguments.cc",
4141
"src/api/api-arguments.h",
4242
"src/api/api-arguments-inl.h",
43-
@@ -2671,6 +2673,11 @@ filegroup(
43+
@@ -2672,6 +2674,11 @@ filegroup(
4444
"src/trap-handler/handler-inside-posix.cc",
4545
"src/trap-handler/handler-outside-posix.cc",
4646
],
@@ -52,7 +52,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
5252
"//conditions:default": [],
5353
}) + select({
5454
"@v8//bazel/config:v8_arm64_simulator": [
55-
@@ -2678,13 +2685,6 @@ filegroup(
55+
@@ -2679,13 +2686,6 @@ filegroup(
5656
"src/trap-handler/trap-handler-simulator.h",
5757
],
5858
"//conditions:default": [],
@@ -66,7 +66,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
6666
}) + select({
6767
"@v8//bazel/config:is_windows_64bit": [
6868
"src/diagnostics/unwinding-info-win64.cc",
69-
@@ -3675,6 +3675,9 @@ filegroup(
69+
@@ -3682,6 +3682,9 @@ filegroup(
7070
"@v8//bazel/config:is_msvc_asm_ia32": ["src/heap/base/asm/ia32/push_registers_masm.asm"],
7171
"@v8//bazel/config:is_msvc_asm_x64": ["src/heap/base/asm/x64/push_registers_masm.asm"],
7272
"@v8//bazel/config:is_msvc_asm_arm64": ["src/heap/base/asm/arm64/push_registers_masm.S"],
@@ -76,7 +76,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
7676
}),
7777
)
7878

79-
@@ -4038,9 +4041,11 @@ filegroup(
79+
@@ -4057,9 +4060,11 @@ filegroup(
8080
"src/d8/d8-js.cc",
8181
"src/d8/d8-platforms.cc",
8282
"src/d8/d8-platforms.h",
@@ -90,7 +90,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
9090
)
9191

9292
genrule(
93-
@@ -4376,7 +4381,7 @@ py_test(
93+
@@ -4396,7 +4401,7 @@ py_test(
9494
":noicu/d8",
9595
":noicu/v8_build_config",
9696
"//testing/pybase",
@@ -99,7 +99,7 @@ index 2351c1e3300e0b1d258c558e6c333086238eba4a..fcfc5aa3ad57722c4b4d11783cf5ae70
9999
main = "tools/run-tests.py",
100100
python_version = "PY3",
101101
tags = [
102-
@@ -4406,7 +4411,7 @@ py_test(
102+
@@ -4426,7 +4431,7 @@ py_test(
103103
":icu/d8",
104104
":icu/v8_build_config",
105105
"//testing/pybase",
@@ -178,7 +178,7 @@ index 67454fa90eea460e70e286623fb1c99edd22c650..7efff1ab909dc7048a216e511c2e71c7
178178
name = "is_clang",
179179
match_any = [
180180
diff --git a/bazel/defs.bzl b/bazel/defs.bzl
181-
index 1ea9bc0da8de0f3fe3d39cfac0c920d60ea763b9..f050b04f76b96fbc761671958126b62288f94fd5 100644
181+
index f23f48ef03ae6adb08e3cfa605bff35d820c865e..fba64a0ca755da3c4a6b24a02d16ca552113a384 100644
182182
--- a/bazel/defs.bzl
183183
+++ b/bazel/defs.bzl
184184
@@ -118,6 +118,24 @@ def _default_args():
@@ -230,15 +230,15 @@ index 1ea9bc0da8de0f3fe3d39cfac0c920d60ea763b9..f050b04f76b96fbc761671958126b622
230230
],
231231
"@v8//bazel/config:is_macos": ["-pthread"],
232232
"//conditions:default": ["-Wl,--no-as-needed -ldl -pthread"],
233-
@@ -498,6 +526,7 @@ def v8_mksnapshot(name, args, suffix = ""):
233+
@@ -492,6 +520,7 @@ def v8_mksnapshot(name, args, suffix = ""):
234234
suffix = suffix,
235235
target_os = select({
236236
"@v8//bazel/config:is_macos": "mac",
237237
+ "@v8//bazel/config:is_windows": "win",
238238
"//conditions:default": "",
239239
}),
240240
)
241-
@@ -509,6 +538,7 @@ def v8_mksnapshot(name, args, suffix = ""):
241+
@@ -503,6 +532,7 @@ def v8_mksnapshot(name, args, suffix = ""):
242242
suffix = suffix,
243243
target_os = select({
244244
"@v8//bazel/config:is_macos": "mac",

patches/v8/0005-Disable-bazel-whole-archive-build.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From acfe5d6daeb91acfaacf0f3f8f38e4d43f2f8e23 Mon Sep 17 00:00:00 2001
1+
From f67a62ae6200e4394bcd885d2c5953098244131a Mon Sep 17 00:00:00 2001
22
From: Felix Hanau <[email protected]>
33
Date: Tue, 11 Apr 2023 14:41:31 -0400
44
Subject: Disable bazel whole-archive build

patches/v8/0006-Make-v8-Locker-automatically-call-isolate-Enter.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 4a43a003fcba6d9a441a906a8c3f4360a2890806 Mon Sep 17 00:00:00 2001
1+
From bb0e0093b5b827b32b98655541fb7452062083ba Mon Sep 17 00:00:00 2001
22
From: Kenton Varda <[email protected]>
33
Date: Tue, 23 May 2023 09:18:57 -0500
44
Subject: Make v8::Locker automatically call isolate->Enter().

patches/v8/0007-Add-an-API-to-capture-and-restore-the-cage-base-poin.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 45609de67c8486fbda8342799cb36ee1d8d94383 Mon Sep 17 00:00:00 2001
1+
From 7ffee5a4b6c0cf7b144616a1023a074c71335333 Mon Sep 17 00:00:00 2001
22
From: Kenton Varda <[email protected]>
33
Date: Tue, 23 May 2023 09:24:11 -0500
44
Subject: Add an API to capture and restore the cage base pointers.

patches/v8/0008-Speed-up-V8-bazel-build-by-always-using-target-cfg.patch

+9-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From 902b7c63a8ae4c3fb7732d8999eb0d04538c115d Mon Sep 17 00:00:00 2001
1+
From 2d9e350afb0511e2be66fdfc28321ecef79a9f4d Mon Sep 17 00:00:00 2001
22
From: Felix Hanau <[email protected]>
33
Date: Wed, 7 Jun 2023 21:40:54 -0400
44
Subject: Speed up V8 bazel build by always using target cfg
@@ -12,7 +12,7 @@ generated files as the output set. While unrelated to the build cfg change,
1212
this also improves build times.
1313

1414
diff --git a/BUILD.bazel b/BUILD.bazel
15-
index fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f..6a1a43db67d607b23f7319f296f03dc67905d970 100644
15+
index 4a914c56851dbd43329829f9b42c9ca500055fc7..11c26187981450ccbb1291217cae2c4fae3db023 100644
1616
--- a/BUILD.bazel
1717
+++ b/BUILD.bazel
1818
@@ -17,6 +17,7 @@ load(
@@ -23,7 +23,7 @@ index fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f..6a1a43db67d607b23f7319f296f03dc6
2323
)
2424
load(":bazel/v8-non-pointer-compression.bzl", "v8_binary_non_pointer_compression")
2525

26-
@@ -4048,22 +4049,20 @@ filegroup(
26+
@@ -4067,22 +4068,20 @@ filegroup(
2727
}),
2828
)
2929

@@ -52,7 +52,7 @@ index fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f..6a1a43db67d607b23f7319f296f03dc6
5252
)
5353

5454
v8_mksnapshot(
55-
@@ -4263,8 +4262,6 @@ v8_binary(
55+
@@ -4283,8 +4282,6 @@ v8_binary(
5656
srcs = [
5757
"src/regexp/gen-regexp-special-case.cc",
5858
"src/regexp/special-case.h",
@@ -61,7 +61,7 @@ index fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f..6a1a43db67d607b23f7319f296f03dc6
6161
],
6262
copts = ["-Wno-implicit-fallthrough"],
6363
defines = [
64-
@@ -4276,6 +4273,7 @@ v8_binary(
64+
@@ -4296,6 +4293,7 @@ v8_binary(
6565
],
6666
deps = [
6767
"//external:absl_optional",
@@ -70,7 +70,7 @@ index fcfc5aa3ad57722c4b4d11783cf5ae704c8c859f..6a1a43db67d607b23f7319f296f03dc6
7070
],
7171
)
7272
diff --git a/bazel/defs.bzl b/bazel/defs.bzl
73-
index f050b04f76b96fbc761671958126b62288f94fd5..e3f5a9b50341b2d083e0b4532b99f930d2f73b18 100644
73+
index fba64a0ca755da3c4a6b24a02d16ca552113a384..a8552489ae1901e380fe6825def658911ffb9d62 100644
7474
--- a/bazel/defs.bzl
7575
+++ b/bazel/defs.bzl
7676
@@ -337,6 +337,15 @@ def v8_library(
@@ -89,7 +89,7 @@ index f050b04f76b96fbc761671958126b62288f94fd5..e3f5a9b50341b2d083e0b4532b99f930
8989
# Use a single generator target for torque definitions and initializers. We can
9090
# split the set of outputs by using OutputGroupInfo, that way we do not need to
9191
# run the torque generator twice.
92-
@@ -404,7 +413,7 @@ _v8_torque_files = rule(
92+
@@ -401,7 +410,7 @@ _v8_torque_files = rule(
9393
"tool": attr.label(
9494
allow_files = True,
9595
executable = True,
@@ -98,20 +98,14 @@ index f050b04f76b96fbc761671958126b62288f94fd5..e3f5a9b50341b2d083e0b4532b99f930
9898
),
9999
"args": attr.string_list(),
100100
},
101-
@@ -505,16 +514,19 @@ _v8_mksnapshot = rule(
101+
@@ -502,13 +511,16 @@ _v8_mksnapshot = rule(
102102
mandatory = True,
103103
allow_files = True,
104104
executable = True,
105105
- cfg = "exec",
106106
+ cfg = get_cfg(),
107107
),
108108
"target_os": attr.string(mandatory = True),
109-
- "_allowlist_function_transition": attr.label(
110-
- default = "@bazel_tools//tools/allowlists/function_transition_allowlist",
111-
- ),
112-
+ # "_allowlist_function_transition": attr.label(
113-
+ # default = "@bazel_tools//tools/allowlists/function_transition_allowlist",
114-
+ # ),
115109
"prefix": attr.string(mandatory = True),
116110
"suffix": attr.string(mandatory = True),
117111
},
@@ -123,7 +117,7 @@ index f050b04f76b96fbc761671958126b62288f94fd5..e3f5a9b50341b2d083e0b4532b99f930
123117
)
124118

125119
def v8_mksnapshot(name, args, suffix = ""):
126-
@@ -637,3 +649,34 @@ def v8_build_config(name):
120+
@@ -631,3 +643,34 @@ def v8_build_config(name):
127121
outs = ["icu/" + name + ".json"],
128122
cmd = "echo '" + build_config_content(cpu, "true") + "' > \"$@\"",
129123
)

0 commit comments

Comments
 (0)