Skip to content

Commit

Permalink
feat: add fp16 to V8 deps (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Mar 5, 2024
1 parent 7f89da3 commit bf307d8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/update-v8/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ const abseilIgnore = `!/third_party/abseil-cpp
/third_party/abseil-cpp/.github
/third_party/abseil-cpp/ci`;

const fp16Ignore = `!/third_party/fp16
/third_party/fp16/src/*
!/third_party/fp16/src/include`;

export const v8Deps = [
{
name: 'trace_event',
Expand Down Expand Up @@ -92,5 +96,11 @@ export const v8Deps = [
repo: 'third_party/abseil-cpp',
gitignore: abseilIgnore,
since: 121
},
{
name: 'fp16',
repo: 'third_party/fp16/src',
gitignore: fp16Ignore,
since: 124
}
];

0 comments on commit bf307d8

Please sign in to comment.