Skip to content

Commit

Permalink
feat: add Abseil to V8 deps
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Nov 13, 2023
1 parent 786d27f commit 8126792
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 @@ -30,6 +30,10 @@ const zlibIgnore = `!/third_party/zlib
/third_party/zlib/contrib/tests
/third_party/zlib/google/test`;

const abseilIgnore = `!/third_party/abseil-cpp
/third_party/abseil-cpp/.github
/third_party/abseil-cpp/ci`;

export const v8Deps = [
{
name: 'trace_event',
Expand Down Expand Up @@ -82,5 +86,11 @@ export const v8Deps = [
repo: 'third_party/ittapi',
gitignore: '!/third_party/ittapi',
since: 81
},
{
name: 'abseil',
repo: 'third_party/abseil-cpp',
gitignore: abseilIgnore,
since: 121
}
];

0 comments on commit 8126792

Please sign in to comment.