DO NOT MERGE - Merge pie-platform-release (PPRL.190605.003) into master

Bug: 134605042
Change-Id: If0048483891bde9dba7339ba7906a746ffb5969e
tree: 991f0b07e683ab83825316a543ba9baf7223d036
  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. .gitignore
  15. .gn
  16. .landmines
  17. .ycm_extra_conf.py
  18. Android.base.bp
  19. Android.bp
  20. Android.mkpeephole.bp
  21. Android.platform.bp
  22. Android.sampler.bp
  23. Android.v8.bp
  24. Android.v8gen.bp
  25. AUTHORS
  26. BUILD.gn
  27. ChangeLog
  28. CODE_OF_CONDUCT.md
  29. codereview.settings
  30. DEPS
  31. genmakefiles.py
  32. LICENSE
  33. LICENSE.fdlibm
  34. LICENSE.strongtalk
  35. LICENSE.v8
  36. LICENSE.valgrind
  37. Makefile
  38. Makefile.android
  39. merge.py
  40. MODULE_LICENSE_BSD
  41. NOTICE
  42. OWNERS
  43. OWNERS.android
  44. PRESUBMIT.py
  45. README.md
  46. snapshot_toolchain.gni
  47. V8_MERGE_REVISION
  48. 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.