• Home
Name Date Size #Lines LOC

..--

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

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

build_overrides/03-May-2024-4633

custom_deps/03-May-2024-44

docs/03-May-2024-32

gni/03-May-2024-214181

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

gypfiles/03-May-2024-4,8084,269

include/03-May-2024-14,3486,604

infra/03-May-2024-3,1692,977

samples/03-May-2024-1,295810

src/03-May-2024-927,642712,087

testing/03-May-2024-418238

third_party/03-May-2024-2,1031,731

tools/03-May-2024-96,48072,715

.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-20246 KiB170167

Android.base.bpD03-May-20241.3 KiB4443

Android.bpD03-May-20247.2 KiB279259

Android.platform.bpD03-May-2024747 2322

Android.sampler.bpD03-May-2024249 1211

Android.v8.bpD03-May-202426.5 KiB657656

Android.v8gen.bpD03-May-2024293 1413

BUILD.gnD03-May-2024109.3 KiB3,8983,505

CODE_OF_CONDUCT.mdD03-May-2024459 97

ChangeLogD03-May-20241 MiB50,44121,463

DEPSD03-May-202413.9 KiB423416

LICENSED03-May-20243 KiB6150

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

OWNERSD03-May-2024926 4543

OWNERS.androidD03-May-2024156 54

PRESUBMIT.pyD03-May-202417.2 KiB467354

README.mdD03-May-2024975 4124

V8_MERGE_REVISIOND03-May-202466 22

WATCHLISTSD03-May-20243.2 KiB10297

codereview.settingsD03-May-2024242 87

genmakefiles.pyD03-May-202410.1 KiB311262

merge.pyD03-May-20242.6 KiB9776

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://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