Skip to content

Commit 5c1cb89

Browse files
authored
feat: add Abseil to V8 deps (#751)
Refs: nodejs/node-v8#211 Refs: v8/v8@fa7521e
1 parent 786d27f commit 5c1cb89

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

lib/update-v8/constants.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ const zlibIgnore = `!/third_party/zlib
3030
/third_party/zlib/contrib/tests
3131
/third_party/zlib/google/test`;
3232

33+
const abseilIgnore = `!/third_party/abseil-cpp
34+
/third_party/abseil-cpp/.github
35+
/third_party/abseil-cpp/ci`;
36+
3337
export const v8Deps = [
3438
{
3539
name: 'trace_event',
@@ -82,5 +86,11 @@ export const v8Deps = [
8286
repo: 'third_party/ittapi',
8387
gitignore: '!/third_party/ittapi',
8488
since: 81
89+
},
90+
{
91+
name: 'abseil',
92+
repo: 'third_party/abseil-cpp',
93+
gitignore: abseilIgnore,
94+
since: 121
8595
}
8696
];

0 commit comments

Comments
 (0)