diff --git a/lib/update-v8/constants.js b/lib/update-v8/constants.js index d82c0ee3..7d9e3635 100644 --- a/lib/update-v8/constants.js +++ b/lib/update-v8/constants.js @@ -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', @@ -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 } ];