• Home
Name Date Size #Lines LOC

..--

base/trace_event/common/03-May-2024-1,141691

build_overrides/03-May-2024-7557

custom_deps/03-May-2024-22

docs/03-May-2024-21

gni/03-May-2024-720621

gnparser/03-May-2024-1,6901,267

include/03-May-2024-24,76113,600

infra/03-May-2024-3,4973,321

samples/03-May-2024-1,393852

snapshot/03-May-2024-187,345187,243

src/03-May-2024-1,113,165861,489

test/torque/03-May-2024-1,3441,171

testing/03-May-2024-386218

third_party/03-May-2024-35,59624,694

tools/cfi/03-May-2024-3021

.clang-formatD03-May-2024161 54

.gitignoreD03-May-20246 21

.gnD03-May-20241.9 KiB4944

.landminesD03-May-2024477 1615

.ycm_extra_conf.pyD03-May-20245.7 KiB194108

AUTHORSD03-May-20248.2 KiB232229

Android.base.bpD03-May-202427.6 KiB668666

Android.bpD03-May-20248.5 KiB337320

Android.initializers.bpD03-May-20242.1 KiB5049

Android.libbase.bpD03-May-20241.5 KiB5251

Android.libplatform.bpD03-May-2024936 2928

Android.libsampler.bpD03-May-2024347 1615

Android.torque.bpD03-May-2024119.6 KiB2,0162,011

BUILD.gnD03-May-2024177 KiB5,5235,016

CODE_OF_CONDUCT.mdD03-May-2024459 97

ChangeLogD03-May-20241 MiB50,44121,463

DEPSD03-May-202421 KiB588573

DIR_METADATAD03-May-2024443 1211

LICENSED03-May-20243.1 KiB6352

LICENSE.fdlibmD03-May-2024250 75

LICENSE.strongtalkD03-May-20241.4 KiB3024

LICENSE.v8D03-May-20241.5 KiB2724

LICENSE.valgrindD03-May-20242 KiB4635

MODULE_LICENSE_BSDD03-May-20240

MakefileD03-May-202417.4 KiB500346

Makefile.androidD03-May-20243.3 KiB7335

NOTICED03-May-20247 KiB158121

OWNERS.androidD03-May-2024156 54

PRESUBMIT.pyD03-May-202419.9 KiB534394

README.mdD03-May-2024964 4124

V8_MERGE_REVISIOND03-May-202466 22

WATCHLISTSD03-May-20244.1 KiB138133

codereview.settingsD03-May-2024242 87

genmakefiles.pyD03-May-202417.6 KiB516446

merge.pyD03-May-20242.6 KiB9775

snapshot_toolchain.gniD03-May-20244.6 KiB10496

README.md

1V8 JavaScript Engine
2=============
3
4V8 is Google's open source JavaScript engine.
5
6V8 implements ECMAScript as specified in ECMA-262.
7
8V8 is written in C++ and is used in Google Chrome, the open source
9browser from Google.
10
11V8 can run standalone, or can be embedded into any C++ application.
12
13V8 Project page: https://v8.dev/docs
14
15
16Getting the Code
17=============
18
19Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run
20
21        fetch v8
22
23This will checkout V8 into the directory `v8` and fetch all of its dependencies.
24To stay up to date, run
25
26        git pull origin
27        gclient sync
28
29For fetching all branches, add the following into your remote
30configuration in `.git/config`:
31
32        fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
33        fetch = +refs/tags/*:refs/tags/*
34
35
36Contributing
37=============
38
39Please follow the instructions mentioned at
40[v8.dev/docs/contribute](https://v8.dev/docs/contribute).
41