Android 7.1.1 Release 43 (N9F27C)
Merge V8 5.3.332.45.  DO NOT MERGE

Test: Manual

Change-Id: Id3254828b068abdea3cb10442e0172a8c9a98e03
(cherry picked from commit 13e2dadd00298019ed862f2b2fc5068bba730bcf)
1344 files changed
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.