Skip to content

Commit 4e8ec9c

Browse files
authored
feat(v8): add fast_float to V8 deps (#844)
Refs: v8/v8@7384d3f
1 parent 4f7ec3e commit 4e8ec9c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lib/update-v8/constants.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ const fp16Ignore = `!/third_party/fp16
3838
/third_party/fp16/src/*
3939
!/third_party/fp16/src/include`;
4040

41+
const fastFloatReplace = `/third_party/fast_float/src/*
42+
!/third_party/fast_float/src/include`;
43+
4144
export const v8Deps = [
4245
{
4346
name: 'trace_event',
@@ -103,5 +106,14 @@ export const v8Deps = [
103106
repo: 'third_party/fp16/src',
104107
gitignore: fp16Ignore,
105108
since: 124
109+
},
110+
{
111+
name: 'fast_float',
112+
repo: 'third_party/fast_float/src',
113+
gitignore: {
114+
match: '/third_party/fast_float/src',
115+
replace: fastFloatReplace
116+
},
117+
since: 130
106118
}
107119
];

0 commit comments

Comments
 (0)