tree: e54dc2f785b598a540ed0e21940bd9f4eeae76ba [path history] [tgz]
  1. base/
  2. benchmarks/
  3. build_overrides/
  4. custom_deps/
  5. docs/
  6. gni/
  7. include/
  8. infra/
  9. samples/
  10. src/
  11. test/
  12. testing/
  13. third_party/
  14. tools/
  15. .clang-format
  16. .clang-tidy
  17. .editorconfig
  18. .flake8
  19. .git-blame-ignore-revs
  20. .gitattributes
  21. .gitignore
  22. .gn
  23. .vpython
  24. .ycm_extra_conf.py
  25. AUTHORS
  26. BUILD.gn
  27. ChangeLog
  28. CODE_OF_CONDUCT.md
  29. codereview.settings
  30. COMMON_OWNERS
  31. DEPS
  32. ENG_REVIEW_OWNERS
  33. INFRA_OWNERS
  34. INTL_OWNERS
  35. LICENSE
  36. LICENSE.fdlibm
  37. LICENSE.strongtalk
  38. LICENSE.v8
  39. LICENSE.valgrind
  40. MIPS_OWNERS
  41. OWNERS
  42. PPC_OWNERS
  43. PRESUBMIT.py
  44. README.md
  45. S390_OWNERS
  46. WATCHLISTS
deps/v8/README.md

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://v8.dev/docs

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned at v8.dev/docs/contribute.