Skip to content

Commit

Permalink
V8 now relies on abseil
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Oct 19, 2023
1 parent 0115a35 commit dc94c96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/out/

/node/
/third_party/abseil-cpp/
/third_party/gn/
/third_party/icu/
/third_party/jinja2/
Expand Down
5 changes: 3 additions & 2 deletions scripts/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,11 @@ function checkoutNode() {

function checkoutDeps() {
const deps = {
"abseil-cpp": "https://chromium.googlesource.com/chromium/src/third_party/abseil-cpp",
"icu": "https://chromium.googlesource.com/chromium/deps/icu",
"zlib": "https://chromium.googlesource.com/chromium/src/third_party/zlib",
"jinja2": "https://chromium.googlesource.com/chromium/src/third_party/jinja2",
"markupsafe": "https://chromium.googlesource.com/chromium/src/third_party/markupsafe"
"markupsafe": "https://chromium.googlesource.com/chromium/src/third_party/markupsafe",
"zlib": "https://chromium.googlesource.com/chromium/src/third_party/zlib",
}
for (const name in deps) {
if (fs.existsSync(`third_party/${name}`))
Expand Down

0 comments on commit dc94c96

Please sign in to comment.