This repository has been archived by the owner on Apr 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
69 lines (63 loc) · 1.78 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
'use strict';
const homedir = require('os').homedir();
const path = require('path');
const chromiumGit = 'https://chromium.googlesource.com';
exports.defaultBaseDir = path.join(homedir, '.update-v8');
exports.chromiumGit = chromiumGit;
exports.v8Git = `${chromiumGit}/v8/v8.git`;
const googleTestReplace = `/third_party/googletest/src/*
!/third_party/googletest/src/googletest
/third_party/googletest/src/googletest/*
!/third_party/googletest/src/googletest/include
/third_party/googletest/src/googletest/include/*
!/third_party/googletest/src/googletest/include/gtest
/third_party/googletest/src/googletest/include/gtest/*
!/third_party/googletest/src/googletest/include/gtest/gtest_prod.h`;
exports.v8Deps = [
{
name: 'trace_event',
repo: 'v8/base/trace_event/common',
path: 'base/trace_event/common',
gitignore: {
match: '/base\n',
replace: ''
},
since: 55
},
{
name: 'gtest',
repo: 'v8/testing/gtest',
path: 'testing/gtest',
gitignore: {
match: '/testing/gtest',
replace:
'/testing/gtest/*\n!/testing/gtest/include\n/testing/gtest/include/*\n!/testing/gtest/include/gtest\n/testing/gtest/include/gtest/*\n!/testing/gtest/include/gtest/gtest_prod.h'
},
since: 55,
until: 66
},
{
name: 'jinja2',
repo: 'v8/third_party/jinja2',
path: 'third_party/jinja2',
gitignore: '!/third_party/jinja2',
since: 56
},
{
name: 'markupsafe',
repo: 'v8/third_party/markupsafe',
path: 'third_party/markupsafe',
gitignore: '!/third_party/markupsafe',
since: 56
},
{
name: 'googletest',
repo: 'v8/third_party/googletest/src',
path: 'third_party/googletest/src',
gitignore: {
match: '/third_party/googletest/src',
replace: googleTestReplace
},
since: 67
}
];