Clone this repo:
  1. 23777b5 Merge "Fix mac SDK build" by Treehugger Robot · 2 years, 8 months ago android-s-beta-5 android-s-qpr3-beta-1 android-s-v2-beta-3 android-s-v2-preview-1 android-t-preview-1 main master android-s-beta-5 android-s-qpr3-beta-1 android-s-v2-beta-2 android-s-v2-beta-3 android-s-v2-preview-1 android-s-v2-preview-2 android-t-beta-3 android-t-preview-1 android-t-preview-2
  2. 49635dd Fix mac SDK build by Colin Cross · 2 years, 8 months ago
  3. df5b9bc Merge "Fix OSX builds for V8" by Treehugger Robot · 2 years, 9 months ago android-s-beta-4 android-s-beta-3 android-s-beta-4
  4. b1f8d6b Fix OSX builds for V8 by Rubin Xu · 3 years ago
  5. 11a01f6 Merge "DO NOT MERGE - Merge RQ3A.210605.005" by Xin Li · 2 years, 9 months ago

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.