Skip to content

Commit 11d166b

Browse files
authoredJan 20, 2025
feat(v8): add highway to V8 deps (#898)
Refs: v8/v8@616c875 Refs: v8/v8@e3204d5
1 parent 69e7bfa commit 11d166b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎lib/update-v8/constants.js

+12
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ const fp16Ignore = `!/third_party/fp16
4141
const fastFloatReplace = `/third_party/fast_float/src/*
4242
!/third_party/fast_float/src/include`;
4343

44+
const highwayIgnore = `/third_party/highway/src/*
45+
!/third_party/highway/src/hwy`;
46+
4447
export const v8Deps = [
4548
{
4649
name: 'trace_event',
@@ -115,5 +118,14 @@ export const v8Deps = [
115118
replace: fastFloatReplace
116119
},
117120
since: 130
121+
},
122+
{
123+
name: 'highway',
124+
repo: 'third_party/highway/src',
125+
gitignore: {
126+
match: '/third_party/highway/src',
127+
replace: highwayIgnore
128+
},
129+
since: 134
118130
}
119131
];

0 commit comments

Comments
 (0)