We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69e7bfa commit 11d166bCopy full SHA for 11d166b
lib/update-v8/constants.js
@@ -41,6 +41,9 @@ const fp16Ignore = `!/third_party/fp16
41
const fastFloatReplace = `/third_party/fast_float/src/*
42
!/third_party/fast_float/src/include`;
43
44
+const highwayIgnore = `/third_party/highway/src/*
45
+!/third_party/highway/src/hwy`;
46
+
47
export const v8Deps = [
48
{
49
name: 'trace_event',
@@ -115,5 +118,14 @@ export const v8Deps = [
115
118
replace: fastFloatReplace
116
119
},
117
120
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
130
}
131
];
0 commit comments