• Home
Name Date Size #Lines LOC

..--

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

benchmarks/03-May-2024-12,8759,521

build_overrides/03-May-2024-7656

docs/03-May-2024-32

gni/03-May-2024-318280

gypfiles/03-May-2024-4,7004,164

include/03-May-2024-12,9735,955

infra/03-May-2024-869760

samples/03-May-2024-1,318850

src/03-May-2024-1,039,081773,093

testing/03-May-2024-117,21279,188

tools/03-May-2024-77,51257,209

.clang-formatD03-May-2024161 54

.gnD03-May-20241.9 KiB4944

.landminesD03-May-2024477 1615

.ycm_extra_conf.pyD03-May-20245.7 KiB194108

AUTHORSD03-May-20244.6 KiB129126

Android.base.mkD03-May-20241.8 KiB6460

Android.d8.mkD03-May-20241.3 KiB5333

Android.libv8.mkD03-May-2024455 219

Android.mkD03-May-20241.2 KiB4116

Android.mkpeephole.mkD03-May-2024935 2623

Android.platform.mkD03-May-2024672 2118

Android.sampler.mkD03-May-2024371 1411

Android.v8.mkD03-May-202420.3 KiB622618

Android.v8common.mkD03-May-20241,000 4533

Android.v8gen.mkD03-May-20242.7 KiB7572

BUILD.gnD03-May-202484.7 KiB3,0042,722

CODE_OF_CONDUCT.mdD03-May-2024459 97

ChangeLogD03-May-2024568.5 KiB25,54011,501

DEPSD03-May-20249.6 KiB299291

LICENSED03-May-20242.8 KiB5848

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.3 KiB496343

Makefile.androidD03-May-20243.3 KiB7335

NOTICED03-May-20247 KiB158121

OWNERSD03-May-2024651 3231

PRESUBMIT.pyD03-May-202411 KiB292209

README.mdD03-May-2024975 4124

V8_MERGE_REVISIOND03-May-202467 32

WATCHLISTSD03-May-20243.2 KiB10297

codereview.settingsD03-May-2024308 98

genmakefiles.pyD03-May-202411.4 KiB306231

snapshot_toolchain.gniD03-May-20244.3 KiB9890

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://github.com/v8/v8/wiki
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 on the
40[V8 wiki](https://github.com/v8/v8/wiki/Contributing).
41