Skip to content

Commit

Permalink
feat(v8): add highway to V8 deps (#898)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored Jan 20, 2025
1 parent 69e7bfa commit 11d166b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/update-v8/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
}
];

0 comments on commit 11d166b

Please sign in to comment.