[deps] Update binaryen

Update to the latest g3 version.

This version includes https://github.com/WebAssembly/binaryen/pull/6794
which unblocks https://dart-review.googlesource.com/c/sdk/+/378421.

Change-Id: I9f4e41df9eb9b49d1048e45d4a12f019412e9887
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/379580
Commit-Queue: Ömer Ağacan <omersa@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
This commit is contained in:
Ömer Sinan Ağacan
2024-08-08 07:48:20 +00:00
committed by Commit Queue
parent 77c7958f34
commit a6e8b4eebf
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ vars = {
### /third_party/ dependencies
# Prefer to use hashes of binaryen that have been reviewed & rolled into g3.
"binaryen_rev" : "654ee6e2504f11fb0e982a2cf276bafa750f694b",
"binaryen_rev" : "23a1a1aacc0dd14767ca8c53a034b7c6bb4acf52",
"boringssl_gen_rev": "fef055e8d2749b82c79c8f043be1cbe5e8e4b40c",
"boringssl_rev": "2db0eb3f96a5756298dcd7f9319e56a98585bd10",
"browser-compat-data_tag": "ac8cae697014da1ff7124fba33b0b4245cc6cd1b", # v1.0.22
+6 -1
View File
@@ -83,6 +83,7 @@ source_set("binaryen_sources") {
"src/src/tools/fuzzing",
"src/src/wasm",
"src/third_party/llvm-project",
"src/third_party/FP16",
]
# We avoid listing all sources manually, this means when updating
@@ -103,6 +104,7 @@ source_set("binaryen_sources") {
include_dirs = [
"src/src",
"src/third_party/llvm-project/include",
"src/third_party/FP16/include",
]
# Ensure WasmIntrinsics.cpp/config.h files are generated.
@@ -128,7 +130,10 @@ template("wasm_tool") {
target_name,
".cpp",
]) ]
include_dirs = [ "src/src" ]
include_dirs = [
"src/src",
"src/third_party/FP16/include",
]
deps = [ ":binaryen_sources" ]
forward_variables_from(invoker, "*")