Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

win: add v8_init to dependencies #92

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
607 changes: 9 additions & 598 deletions README.md

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.5',
'v8_embedder_string': '-node.0',

##### V8 defaults for Node.js #####

Expand Down Expand Up @@ -68,6 +68,9 @@
# Still WIP in V8 7.1
'v8_enable_pointer_compression': 'false',

# Explicitly set to false to copy V8's default
'v8_enable_31bit_smis_on_64bit_arch': 'false',

# New in V8 7.1
'v8_enable_embedded_builtins': 'true',

Expand Down
6 changes: 3 additions & 3 deletions deps/v8/.clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
modernize-redundant-void-arg,
modernize-replace-random-shuffle,
modernize-shrink-to-fit,
modernize-use-auto,
# modernize-use-auto,
modernize-use-bool-literals,
modernize-use-equals-default,
modernize-use-equals-delete,
# modernize-use-equals-delete,
modernize-use-nullptr,
modernize-use-override,
google-build-explicit-make-pair,
# google-build-explicit-make-pair,
google-explicit-constructor,
google-readability-casting'
WarningsAsErrors: ''
Expand Down
3 changes: 2 additions & 1 deletion deps/v8/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
.project
.pydevproject
.settings
.torquelint-cache
.vscode
/_*
/build
Expand All @@ -51,7 +52,7 @@
/test/mozilla/data
/test/test262/data
/test/test262/harness
/test/wasm-js
/test/wasm-js/data
/test/wasm-spec-tests/tests
/test/wasm-spec-tests/tests.tar.gz
/third_party/*
Expand Down
23 changes: 23 additions & 0 deletions deps/v8/.vpython
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,26 @@ wheel: <
platform: "win_amd64"
>
>

# Used by:
# tools/unittests/run_perf_test.py
wheel: <
name: "infra/python/wheels/coverage/${vpython_platform}"
version: "version:4.3.4"
>
wheel: <
name: "infra/python/wheels/six-py2_py3"
version: "version:1.10.0"
>
wheel: <
name: "infra/python/wheels/pbr-py2_py3"
version: "version:3.0.0"
>
wheel: <
name: "infra/python/wheels/funcsigs-py2_py3"
version: "version:1.0.2"
>
wheel: <
name: "infra/python/wheels/mock-py2_py3"
version: "version:2.0.0"
>
4 changes: 3 additions & 1 deletion deps/v8/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Andrew Paprocki <[email protected]>
Andrei Kashcha <[email protected]>
Anna Henningsen <[email protected]>
Bangfu Tao <[email protected]>
Daniel Shelton <[email protected]>
Ben Coe <[email protected]>
Ben Newman <[email protected]>
Ben Noordhuis <[email protected]>
Expand Down Expand Up @@ -109,7 +110,7 @@ Maciej Małecki <[email protected]>
Marcin Cieślak <[email protected]>
Marcin Wiącek <[email protected]>
Mateusz Czeladka <[email protected]>
Matheus Marchini <[email protected]>
Matheus Marchini <[email protected]>
Mathias Bynens <[email protected]>
Matt Hanselman <[email protected]>
Matthew Sporleder <[email protected]>
Expand Down Expand Up @@ -156,6 +157,7 @@ Teddy Katz <[email protected]>
Tiancheng "Timothy" Gu <[email protected]>
Tobias Burnus <[email protected]>
Tobias Nießen <[email protected]>
Tom Tan <[email protected]>
Ujjwal Sharma <[email protected]>
Victor Costan <[email protected]>
Vlad Burlik <[email protected]>
Expand Down
Loading