From ba85230da1566f7f3bda870534e20926291098f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 20 Jan 2025 08:06:52 +0100 Subject: [PATCH] feat(v8): add highway to V8 deps Refs: https://github.com/v8/v8/commit/616c87580c06e76d991c06213530e5ac0043c314 Refs: https://github.com/v8/v8/commit/e3204d589e7911bd2ee75784bec2f9c9e482bbcb --- lib/update-v8/constants.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/update-v8/constants.js b/lib/update-v8/constants.js index d8ed501f..d12a0b6a 100644 --- a/lib/update-v8/constants.js +++ b/lib/update-v8/constants.js @@ -41,6 +41,9 @@ const fp16Ignore = `!/third_party/fp16 const fastFloatReplace = `/third_party/fast_float/src/* !/third_party/fast_float/src/include`; +const highwayIgnore = `/third_party/highway/src/* +!/third_party/highway/src/hwy`; + export const v8Deps = [ { name: 'trace_event', @@ -115,5 +118,14 @@ export const v8Deps = [ replace: fastFloatReplace }, since: 130 + }, + { + name: 'highway', + repo: 'third_party/highway/src', + gitignore: { + match: '/third_party/highway/src', + replace: highwayIgnore + }, + since: 134 } ];