diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-10 19:18:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 19:18:31 -0400 |
commit | dd70d8622b8d3fb2064a6540f89a3632941cf37e (patch) | |
tree | 9e134e5bfd5a2b30cbdfc088537f80dd3b56ed73 /tools/third_party.py | |
parent | 8f171c101a69f63cacd74a08e31e976f958ad0df (diff) |
Upgrade V8 to 7.9.8 (#2907)
//build was updated and our patch rebased:
https://github.com/denoland/chromium_build/tree/20190910_win_clang_depfile
V8 has removed the binaries third_party/v8/buildtools/*/gn.sha1 and started
using CIPD. In this patch, I've hacked in the original .sha1 files and continue to
use download_from_google_storage instead of the new CIPD. This will be fixed
in later work.
Diffstat (limited to 'tools/third_party.py')
-rw-r--r-- | tools/third_party.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/third_party.py b/tools/third_party.py index 00dfc3bc3..2333c3147 100644 --- a/tools/third_party.py +++ b/tools/third_party.py @@ -20,6 +20,8 @@ def tp(*subpath_parts): return root("third_party", *subpath_parts) +build_path = root("build") + third_party_path = tp() depot_tools_path = tp("depot_tools") rust_crates_path = tp("rust_crates") @@ -52,6 +54,7 @@ def python_env(env=None, merge_env=None): python_site_env = {} temp = os.environ["PATH"], sys.path os.environ["PATH"], sys.path = "", [] + site.addsitedir(build_path) # Modifies PATH and sys.path. site.addsitedir(python_packages_path) # Modifies PATH and sys.path. python_site_env = {"PATH": os.environ["PATH"], "PYTHONPATH": sys.path} os.environ["PATH"], sys.path = temp |