aml_tz2_303800002
Snap for 8426163 from 816b5a968d6c12be9cdf2a36ab579061f6c47126 to mainline-tzdata2-release

Change-Id: I06b8002353ebc66c6b28570f80f7bf424c01601b
tree: 1d4669c80ae865ae85d4bac39fb8f943eff8e75e
  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.