Merge V8 5.4.500.40 Test: Manual - built & ran d8 Change-Id: I4edfa2853d3e565b729723645395688ece3193f4 
7899 files changed
tree: d24b57d9c6d116ea509c621669f8ed7ed8658d3f
  1. base/
  2. benchmarks/
  3. build_overrides/
  4. docs/
  5. gni/
  6. gypfiles/
  7. include/
  8. infra/
  9. samples/
  10. src/
  11. testing/
  12. tools/
  13. .clang-format
  14. .gn
  15. .landmines
  16. .ycm_extra_conf.py
  17. Android.base.mk
  18. Android.d8.mk
  19. Android.libv8.mk
  20. Android.mk
  21. Android.mkpeephole.mk
  22. Android.platform.mk
  23. Android.sampler.mk
  24. Android.v8.mk
  25. Android.v8common.mk
  26. Android.v8gen.mk
  27. AUTHORS
  28. BUILD.gn
  29. ChangeLog
  30. CODE_OF_CONDUCT.md
  31. codereview.settings
  32. DEPS
  33. LICENSE
  34. LICENSE.fdlibm
  35. LICENSE.strongtalk
  36. LICENSE.v8
  37. LICENSE.valgrind
  38. Makefile
  39. Makefile.android
  40. MODULE_LICENSE_BSD
  41. NOTICE
  42. OWNERS
  43. PRESUBMIT.py
  44. README.md
  45. snapshot_toolchain.gni
  46. V8_MERGE_REVISION
  47. WATCHLISTS
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://github.com/v8/v8/wiki

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 on the V8 wiki.