Android Mainline 11.0.0 Release 27 (7248014)
Snap for 7200919 from 9d0941cf1fa5b261c900bf3c08163616bb000d08 to mainline-mediaprovider-release

Change-Id: Ib8bb798768443e4922980240ef98bc21603bbff8
tree: 086f3e6a7993bb346e943ed1aec7ad134fbc8f43
  1. base/
  2. build_overrides/
  3. custom_deps/
  4. docs/
  5. gni/
  6. gnparser/
  7. include/
  8. infra/
  9. samples/
  10. snapshot/
  11. src/
  12. test/
  13. testing/
  14. third_party/
  15. tools/
  16. .clang-format
  17. .gitignore
  18. .gn
  19. .landmines
  20. .ycm_extra_conf.py
  21. Android.base.bp
  22. Android.bp
  23. Android.initializers.bp
  24. Android.libbase.bp
  25. Android.libplatform.bp
  26. Android.libsampler.bp
  27. Android.torque.bp
  28. AUTHORS
  29. BUILD.gn
  30. ChangeLog
  31. CODE_OF_CONDUCT.md
  32. codereview.settings
  33. DEPS
  34. DIR_METADATA
  35. genmakefiles.py
  36. LICENSE
  37. LICENSE.fdlibm
  38. LICENSE.strongtalk
  39. LICENSE.v8
  40. LICENSE.valgrind
  41. Makefile
  42. Makefile.android
  43. merge.py
  44. MODULE_LICENSE_BSD
  45. NOTICE
  46. OWNERS.android
  47. PRESUBMIT.py
  48. README.md
  49. snapshot_toolchain.gni
  50. V8_MERGE_REVISION
  51. 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://v8.dev/docs

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 at v8.dev/docs/contribute.