Merge V8 5.3.332.45.  DO NOT MERGE am: 244994658d am: 6ae655ae94 am: b51fda4bea
am: 8316140f76

Change-Id: Ia20b277b46aad0d5919b4243e7816a5a99bdb6e1
tree: 3fa142ce2609b1fdf9d001275350184f71860fa3
  1. base/
  2. benchmarks/
  3. build/
  4. build_overrides/
  5. docs/
  6. gni/
  7. gypfiles/
  8. include/
  9. infra/
  10. samples/
  11. src/
  12. test/
  13. testing/
  14. third_party/
  15. tools/
  16. .gitignore
  17. Android.d8.mk
  18. Android.libv8.mk
  19. Android.mk
  20. Android.v8common.mk
  21. AUTHORS
  22. BUILD.gn
  23. ChangeLog
  24. CleanSpec.mk
  25. CODE_OF_CONDUCT.md
  26. codereview.settings
  27. DEPS
  28. LICENSE
  29. LICENSE.fdlibm
  30. LICENSE.strongtalk
  31. LICENSE.v8
  32. LICENSE.valgrind
  33. Makefile
  34. Makefile.android
  35. Makefile.nacl
  36. OWNERS
  37. PRESUBMIT.py
  38. README.md
  39. snapshot_toolchain.gni
  40. V8_MERGE_REVISION
  41. 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.