Merge V8 5.2.361.47  DO NOT MERGE

https://chromium.googlesource.com/v8/v8/+/5.2.361.47

FPIIM-449

Change-Id: Ibec421b85a9b88cb3a432ada642e469fe7e78346
(cherry picked from commit bcf72ee8e3b26f1d0726869c7ddb3921c68b09a8)
1309 files changed
tree: 846d2ea15b4932324d6507083a8b0f6086122398
  1. base/
  2. benchmarks/
  3. build/
  4. build_overrides/
  5. docs/
  6. gypfiles/
  7. include/
  8. infra/
  9. samples/
  10. src/
  11. test/
  12. testing/
  13. third_party/
  14. tools/
  15. .gitignore
  16. Android.d8.mk
  17. Android.libv8.mk
  18. Android.mk
  19. Android.v8common.mk
  20. AUTHORS
  21. BUILD.gn
  22. ChangeLog
  23. CleanSpec.mk
  24. CODE_OF_CONDUCT.md
  25. codereview.settings
  26. DEPS
  27. LICENSE
  28. LICENSE.strongtalk
  29. LICENSE.v8
  30. LICENSE.valgrind
  31. Makefile
  32. Makefile.android
  33. Makefile.nacl
  34. MODULE_LICENSE_BSD
  35. NOTICE
  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.