Merge "Fix OSX builds for V8"
tree: 484cd94de8d9a1d43f9ccf4440353c0812928ecc
  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. METADATA
  45. MODULE_LICENSE_BSD
  46. NOTICE
  47. OWNERS.android
  48. PRESUBMIT.py
  49. README.md
  50. snapshot_toolchain.gni
  51. TEST_MAPPING
  52. V8_MERGE_REVISION
  53. 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.