libv8 6.0.286.44.0beta1 → 6.0.286.54.0beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -2
- data/ext/libv8/location.rb +1 -1
- data/ext/libv8/paths.rb +1 -1
- data/lib/libv8/version.rb +1 -1
- data/patches/0001-Build-a-standalone-static-library.patch +1 -1
- data/patches/0002-Don-t-compile-unnecessary-stuff.patch +9 -11
- data/patches/0003-Use-the-fPIC-flag-for-the-static-library.patch +1 -1
- data/patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch +1 -1
- data/patches/0005-Fix-GCC-7-build-errors.patch +1 -1
- data/spec/location_spec.rb +1 -1
- data/vendor/depot_tools/.gitattributes +1 -1
- data/vendor/depot_tools/bootstrap/win/manifest.txt +1 -1
- data/vendor/depot_tools/bootstrap/win/manifest_bleeding_edge.txt +1 -1
- data/vendor/depot_tools/bootstrap/win/win_tools.bat +1 -1
- data/vendor/depot_tools/cipd +2 -3
- data/vendor/depot_tools/cipd.ps1 +2 -6
- data/vendor/depot_tools/cipd_bin_setup.bat +1 -1
- data/vendor/depot_tools/cipd_bin_setup.sh +3 -1
- data/vendor/depot_tools/cipd_client_version +1 -1
- data/vendor/depot_tools/cpplint.py +0 -31
- data/vendor/depot_tools/gclient.py +162 -88
- data/vendor/depot_tools/gclient_utils.py +5 -0
- data/vendor/depot_tools/gerrit_client.py +0 -0
- data/vendor/depot_tools/gerrit_util.py +2 -2
- data/vendor/depot_tools/git_cl.py +25 -12
- data/vendor/depot_tools/infra/config/recipes.cfg +2 -2
- data/vendor/depot_tools/led +1 -1
- data/vendor/depot_tools/led.bat +1 -1
- data/vendor/depot_tools/my_activity.py +26 -16
- data/vendor/depot_tools/presubmit_canned_checks.py +1 -1
- data/vendor/depot_tools/presubmit_support.py +15 -4
- data/vendor/depot_tools/recipes/README.recipes.md +21 -14
- data/vendor/depot_tools/recipes/recipe_modules/bot_update/api.py +18 -11
- data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/apply_gerrit_ref_custom.json +29 -0
- data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_empty_revision.json +156 -0
- data/vendor/depot_tools/recipes/recipe_modules/bot_update/examples/full.py +27 -1
- data/vendor/depot_tools/recipes/recipe_modules/bot_update/resources/bot_update.py +11 -0
- data/vendor/depot_tools/recipes/recipe_modules/gclient/config.py +8 -9
- data/vendor/depot_tools/recipes/recipes.py +2 -2
- data/vendor/depot_tools/recipes/recipes/fetch_end_to_end_test.expected/basic.json +162 -0
- data/vendor/depot_tools/recipes/recipes/fetch_end_to_end_test.py +53 -0
- data/vendor/depot_tools/update_depot_tools +13 -7
- data/vendor/depot_tools/update_depot_tools.bat +7 -2
- data/vendor/depot_tools/vpython +1 -1
- data/vendor/depot_tools/vpython.bat +1 -1
- data/vendor/depot_tools/win_toolchain/get_toolchain_if_necessary.py +7 -3
- data/vendor/v8/AUTHORS +1 -0
- data/vendor/v8/codereview.settings +2 -4
- data/vendor/v8/include/v8-version.h +1 -1
- data/vendor/v8/src/builtins/builtins-array-gen.cc +1 -0
- data/vendor/v8/src/compiler/escape-analysis.cc +1 -4
- data/vendor/v8/src/compiler/load-elimination.cc +1 -1
- data/vendor/v8/src/d8.cc +1 -0
- data/vendor/v8/src/map-updater.cc +39 -2
- data/vendor/v8/src/map-updater.h +9 -2
- data/vendor/v8/src/objects-debug.cc +7 -1
- data/vendor/v8/src/objects.cc +33 -6
- data/vendor/v8/src/objects.h +0 -1
- data/vendor/v8/src/objects/map-inl.h +15 -0
- data/vendor/v8/src/objects/map.h +6 -0
- data/vendor/v8/src/v8.gyp +7 -0
- data/vendor/v8/src/wasm/wasm-module.cc +10 -8
- data/vendor/v8/tools/run-tests.py +1 -1
- metadata +6 -5
- data/vendor/depot_tools/win_toolchain/7z/7z.dll +0 -0
- data/vendor/depot_tools/win_toolchain/7z/7z.exe +0 -0
- data/vendor/depot_tools/win_toolchain/7z/LICENSE +0 -57
@@ -48,10 +48,21 @@ def RunSteps(api):
|
|
48
48
|
api.properties.get('gerrit_no_rebase_patch_ref'))
|
49
49
|
|
50
50
|
if api.properties.get('test_apply_gerrit_ref'):
|
51
|
+
prop2arg = {
|
52
|
+
'gerrit_custom_repo': 'gerrit_repo',
|
53
|
+
'gerrit_custom_ref': 'gerrit_ref',
|
54
|
+
'gerrit_custom_step_name': 'step_name',
|
55
|
+
}
|
56
|
+
kwargs = {
|
57
|
+
prop2arg[p]: api.properties.get(p)
|
58
|
+
for p in prop2arg if api.properties.get(p)
|
59
|
+
}
|
51
60
|
api.bot_update.apply_gerrit_ref(
|
52
61
|
root='/tmp/test/root',
|
53
62
|
gerrit_no_reset=gerrit_no_reset,
|
54
|
-
gerrit_no_rebase_patch_ref=gerrit_no_rebase_patch_ref
|
63
|
+
gerrit_no_rebase_patch_ref=gerrit_no_rebase_patch_ref,
|
64
|
+
**kwargs
|
65
|
+
)
|
55
66
|
else:
|
56
67
|
bot_update_step = api.bot_update.ensure_checkout(
|
57
68
|
no_shallow=no_shallow,
|
@@ -90,6 +101,12 @@ def GenTests(api):
|
|
90
101
|
patchset=654321,
|
91
102
|
rietveld='https://rietveld.example.com/',
|
92
103
|
)
|
104
|
+
yield api.test('tryjob_empty_revision') + api.properties(
|
105
|
+
issue=12345,
|
106
|
+
patchset=654321,
|
107
|
+
rietveld='https://rietveld.example.com/',
|
108
|
+
revisions={'src': ''},
|
109
|
+
)
|
93
110
|
yield api.test('deprecated_got_revision_mapping') + api.properties(
|
94
111
|
deprecated_got_revision_mapping=True,
|
95
112
|
issue=12345,
|
@@ -156,6 +173,15 @@ def GenTests(api):
|
|
156
173
|
gerrit_no_reset=1,
|
157
174
|
test_apply_gerrit_ref=True,
|
158
175
|
)
|
176
|
+
yield api.test('apply_gerrit_ref_custom') + api.properties(
|
177
|
+
repository='chromium',
|
178
|
+
gerrit_no_rebase_patch_ref=True,
|
179
|
+
gerrit_no_reset=1,
|
180
|
+
gerrit_custom_repo='https://custom/repo',
|
181
|
+
gerrit_custom_ref='refs/changes/custom/1234567/1',
|
182
|
+
gerrit_custom_step_name='Custom apply gerrit step',
|
183
|
+
test_apply_gerrit_ref=True,
|
184
|
+
)
|
159
185
|
yield api.test('tryjob_v8') + api.properties(
|
160
186
|
issue=12345,
|
161
187
|
patchset=654321,
|
@@ -1139,6 +1139,17 @@ def main():
|
|
1139
1139
|
|
1140
1140
|
solutions_printer(git_slns)
|
1141
1141
|
|
1142
|
+
# Creating hardlinks during a build can interact with git reset in
|
1143
|
+
# unfortunate ways if git's index isn't refreshed beforehand. (See
|
1144
|
+
# crbug.com/330461#c13 for an explanation.)
|
1145
|
+
try:
|
1146
|
+
call_gclient('recurse', '-v', 'git', 'update-index', '--refresh')
|
1147
|
+
except SubprocessFailed:
|
1148
|
+
# Failure here (and nowhere else) may have adverse effects on the
|
1149
|
+
# compile time of the build but shouldn't affect its ability to
|
1150
|
+
# successfully complete.
|
1151
|
+
print 'WARNING: Failed to update git indices.'
|
1152
|
+
|
1142
1153
|
try:
|
1143
1154
|
# Dun dun dun, the main part of bot_update.
|
1144
1155
|
revisions, step_text, shallow = prepare(options, git_slns, active)
|
@@ -272,9 +272,9 @@ def infra(c):
|
|
272
272
|
c.got_revision_mapping['infra'] = 'got_revision'
|
273
273
|
|
274
274
|
p = c.patch_projects
|
275
|
-
p['luci-py'] = ('infra/luci', 'HEAD')
|
275
|
+
p['infra/luci/luci-py'] = ('infra/luci', 'HEAD')
|
276
276
|
# TODO(phajdan.jr): remove recipes-py when it's not used for project name.
|
277
|
-
p['recipes-py'] = ('infra/recipes-py', 'HEAD')
|
277
|
+
p['infra/luci/recipes-py'] = ('infra/recipes-py', 'HEAD')
|
278
278
|
p['recipe_engine'] = ('infra/recipes-py', 'HEAD')
|
279
279
|
|
280
280
|
@config_ctx()
|
@@ -289,22 +289,22 @@ def luci_gae(c):
|
|
289
289
|
# luci/gae is checked out as a part of infra.git solution at HEAD.
|
290
290
|
c.revisions['infra'] = 'origin/master'
|
291
291
|
# luci/gae is developed together with luci-go, which should be at HEAD.
|
292
|
-
c.revisions['infra/go/src/
|
293
|
-
c.revisions['infra/go/src/
|
292
|
+
c.revisions['infra/go/src/go.chromium.org/luci'] = 'origin/master'
|
293
|
+
c.revisions['infra/go/src/go.chromium.org/gae'] = (
|
294
294
|
gclient_api.RevisionFallbackChain('origin/master'))
|
295
295
|
m = c.got_revision_mapping
|
296
296
|
del m['infra']
|
297
|
-
m['infra/go/src/
|
297
|
+
m['infra/go/src/go.chromium.org/gae'] = 'got_revision'
|
298
298
|
|
299
299
|
@config_ctx(includes=['infra'])
|
300
300
|
def luci_go(c):
|
301
301
|
# luci-go is checked out as a part of infra.git solution at HEAD.
|
302
302
|
c.revisions['infra'] = 'origin/master'
|
303
|
-
c.revisions['infra/go/src/
|
303
|
+
c.revisions['infra/go/src/go.chromium.org/luci'] = (
|
304
304
|
gclient_api.RevisionFallbackChain('origin/master'))
|
305
305
|
m = c.got_revision_mapping
|
306
306
|
del m['infra']
|
307
|
-
m['infra/go/src/
|
307
|
+
m['infra/go/src/go.chromium.org/luci'] = 'got_revision'
|
308
308
|
|
309
309
|
@config_ctx(includes=['infra'])
|
310
310
|
def luci_py(c):
|
@@ -332,8 +332,7 @@ def recipes_py(c):
|
|
332
332
|
def recipes_py_bare(c):
|
333
333
|
soln = c.solutions.add()
|
334
334
|
soln.name = 'recipes-py'
|
335
|
-
soln.url =
|
336
|
-
'luci/recipes-py')
|
335
|
+
soln.url = 'https://chromium.googlesource.com/infra/luci/recipes-py'
|
337
336
|
c.got_revision_mapping['recipes-py'] = 'got_revision'
|
338
337
|
|
339
338
|
@config_ctx()
|
@@ -10,8 +10,8 @@
|
|
10
10
|
** DO NOT MODIFY **
|
11
11
|
*******************
|
12
12
|
|
13
|
-
This is a copy of https://
|
14
|
-
To fix bugs, fix in the
|
13
|
+
This is a copy of https://chromium.googlesource.com/infra/luci/recipes-py/+/master/doc/recipes.py.
|
14
|
+
To fix bugs, fix in the googlesource repo then run the autoroller.
|
15
15
|
"""
|
16
16
|
|
17
17
|
import argparse
|
@@ -0,0 +1,162 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"cmd": [
|
4
|
+
"python",
|
5
|
+
"-u",
|
6
|
+
"RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
|
7
|
+
"--spec-path",
|
8
|
+
"cache_dir = '[CACHE]/git'\nsolutions = [{'deps_file': '.DEPS.git', 'managed': True, 'name': 'depot_tools', 'url': 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'}]",
|
9
|
+
"--patch_root",
|
10
|
+
"depot_tools",
|
11
|
+
"--revision_mapping_file",
|
12
|
+
"{\"got_revision\": \"depot_tools\"}",
|
13
|
+
"--git-cache-dir",
|
14
|
+
"[CACHE]/git",
|
15
|
+
"--cleanup-dir",
|
16
|
+
"[CLEANUP]/bot_update",
|
17
|
+
"--output_json",
|
18
|
+
"/path/to/tmp/json",
|
19
|
+
"--revision",
|
20
|
+
"depot_tools@HEAD"
|
21
|
+
],
|
22
|
+
"env_prefixes": {
|
23
|
+
"PATH": [
|
24
|
+
"RECIPE_PACKAGE_REPO[depot_tools]"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
"infra_step": true,
|
28
|
+
"name": "bot_update",
|
29
|
+
"~followup_annotations": [
|
30
|
+
"@@@STEP_TEXT@Some step text@@@",
|
31
|
+
"@@@STEP_LOG_LINE@json.output@{@@@",
|
32
|
+
"@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
|
33
|
+
"@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
|
34
|
+
"@@@STEP_LOG_LINE@json.output@ \"depot_tools\": \"HEAD\"@@@",
|
35
|
+
"@@@STEP_LOG_LINE@json.output@ }, @@@",
|
36
|
+
"@@@STEP_LOG_LINE@json.output@ \"manifest\": {@@@",
|
37
|
+
"@@@STEP_LOG_LINE@json.output@ \"depot_tools\": {@@@",
|
38
|
+
"@@@STEP_LOG_LINE@json.output@ \"repository\": \"https://fake.org/depot_tools.git\", @@@",
|
39
|
+
"@@@STEP_LOG_LINE@json.output@ \"revision\": \"59bbfb4465019d8ed83bfe88fef566922953452a\"@@@",
|
40
|
+
"@@@STEP_LOG_LINE@json.output@ }@@@",
|
41
|
+
"@@@STEP_LOG_LINE@json.output@ }, @@@",
|
42
|
+
"@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@",
|
43
|
+
"@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"depot_tools\", @@@",
|
44
|
+
"@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@",
|
45
|
+
"@@@STEP_LOG_LINE@json.output@ \"got_revision\": \"59bbfb4465019d8ed83bfe88fef566922953452a\", @@@",
|
46
|
+
"@@@STEP_LOG_LINE@json.output@ \"got_revision_cp\": \"refs/heads/master@{#91780}\"@@@",
|
47
|
+
"@@@STEP_LOG_LINE@json.output@ }, @@@",
|
48
|
+
"@@@STEP_LOG_LINE@json.output@ \"root\": \"depot_tools\", @@@",
|
49
|
+
"@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@",
|
50
|
+
"@@@STEP_LOG_LINE@json.output@}@@@",
|
51
|
+
"@@@STEP_LOG_END@json.output@@@",
|
52
|
+
"@@@SET_BUILD_PROPERTY@got_revision@\"59bbfb4465019d8ed83bfe88fef566922953452a\"@@@",
|
53
|
+
"@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#91780}\"@@@"
|
54
|
+
]
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"cmd": [
|
58
|
+
"python",
|
59
|
+
"-u",
|
60
|
+
"RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
|
61
|
+
"--json-output",
|
62
|
+
"/path/to/tmp/json",
|
63
|
+
"listdir",
|
64
|
+
"[START_DIR]/depot_tools/fetch_configs"
|
65
|
+
],
|
66
|
+
"infra_step": true,
|
67
|
+
"name": "listdir fetch_configs",
|
68
|
+
"stdout": "/path/to/tmp/",
|
69
|
+
"~followup_annotations": [
|
70
|
+
"@@@STEP_LOG_LINE@listdir@[START_DIR]/depot_tools/fetch_configs/depot_tools.py@@@",
|
71
|
+
"@@@STEP_LOG_LINE@listdir@[START_DIR]/depot_tools/fetch_configs/infra.py@@@",
|
72
|
+
"@@@STEP_LOG_END@listdir@@@"
|
73
|
+
]
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"cmd": [
|
77
|
+
"python",
|
78
|
+
"-u",
|
79
|
+
"[START_DIR]/depot_tools/fetch.py",
|
80
|
+
"depot_tools"
|
81
|
+
],
|
82
|
+
"cwd": "[TMP_BASE]/fetch_end_to_end_test_depot_tools_tmp_1",
|
83
|
+
"env": {
|
84
|
+
"CHROME_HEADLESS": "1",
|
85
|
+
"DEPOT_TOOLS_UPDATE": "0"
|
86
|
+
},
|
87
|
+
"env_prefixes": {
|
88
|
+
"PATH": [
|
89
|
+
"[START_DIR]/depot_tools"
|
90
|
+
]
|
91
|
+
},
|
92
|
+
"name": "fetch depot_tools"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"cmd": [
|
96
|
+
"python",
|
97
|
+
"-u",
|
98
|
+
"RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
|
99
|
+
"--json-output",
|
100
|
+
"/path/to/tmp/json",
|
101
|
+
"rmtree",
|
102
|
+
"[TMP_BASE]/fetch_end_to_end_test_depot_tools_tmp_1"
|
103
|
+
],
|
104
|
+
"env": {
|
105
|
+
"CHROME_HEADLESS": "1",
|
106
|
+
"DEPOT_TOOLS_UPDATE": "0"
|
107
|
+
},
|
108
|
+
"env_prefixes": {
|
109
|
+
"PATH": [
|
110
|
+
"[START_DIR]/depot_tools"
|
111
|
+
]
|
112
|
+
},
|
113
|
+
"infra_step": true,
|
114
|
+
"name": "cleanup"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"cmd": [
|
118
|
+
"python",
|
119
|
+
"-u",
|
120
|
+
"[START_DIR]/depot_tools/fetch.py",
|
121
|
+
"infra"
|
122
|
+
],
|
123
|
+
"cwd": "[TMP_BASE]/fetch_end_to_end_test_infra_tmp_2",
|
124
|
+
"env": {
|
125
|
+
"CHROME_HEADLESS": "1",
|
126
|
+
"DEPOT_TOOLS_UPDATE": "0"
|
127
|
+
},
|
128
|
+
"env_prefixes": {
|
129
|
+
"PATH": [
|
130
|
+
"[START_DIR]/depot_tools"
|
131
|
+
]
|
132
|
+
},
|
133
|
+
"name": "fetch infra"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"cmd": [
|
137
|
+
"python",
|
138
|
+
"-u",
|
139
|
+
"RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
|
140
|
+
"--json-output",
|
141
|
+
"/path/to/tmp/json",
|
142
|
+
"rmtree",
|
143
|
+
"[TMP_BASE]/fetch_end_to_end_test_infra_tmp_2"
|
144
|
+
],
|
145
|
+
"env": {
|
146
|
+
"CHROME_HEADLESS": "1",
|
147
|
+
"DEPOT_TOOLS_UPDATE": "0"
|
148
|
+
},
|
149
|
+
"env_prefixes": {
|
150
|
+
"PATH": [
|
151
|
+
"[START_DIR]/depot_tools"
|
152
|
+
]
|
153
|
+
},
|
154
|
+
"infra_step": true,
|
155
|
+
"name": "cleanup (2)"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"name": "$result",
|
159
|
+
"recipe_result": null,
|
160
|
+
"status_code": 0
|
161
|
+
}
|
162
|
+
]
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Copyright 2017 The Chromium Authors. All rights reserved.
|
2
|
+
# Use of this source code is governed by a BSD-style license that can be
|
3
|
+
# found in the LICENSE file.
|
4
|
+
|
5
|
+
DEPS = [
|
6
|
+
'bot_update',
|
7
|
+
'gclient',
|
8
|
+
'recipe_engine/context',
|
9
|
+
'recipe_engine/file',
|
10
|
+
'recipe_engine/path',
|
11
|
+
'recipe_engine/python',
|
12
|
+
'recipe_engine/step',
|
13
|
+
]
|
14
|
+
|
15
|
+
|
16
|
+
def RunSteps(api):
|
17
|
+
# Create a test depot_tools checkout, possibly applying user patches.
|
18
|
+
api.gclient.set_config('depot_tools')
|
19
|
+
api.bot_update.ensure_checkout()
|
20
|
+
|
21
|
+
# List fetch configs available in the test depot_tools checkout.
|
22
|
+
fetch_configs = sorted(
|
23
|
+
api.path.basename(f)[:-3] for f in api.file.listdir(
|
24
|
+
'listdir fetch_configs', api.path['checkout'].join('fetch_configs'))
|
25
|
+
if str(f).endswith('.py'))
|
26
|
+
|
27
|
+
# Try to run "fetch" for each of the configs. It's important to use
|
28
|
+
# the checkout under test.
|
29
|
+
with api.context(
|
30
|
+
env={'DEPOT_TOOLS_UPDATE': '0', 'CHROME_HEADLESS': '1'},
|
31
|
+
env_prefixes={'PATH': [api.path['checkout']]}):
|
32
|
+
with api.step.defer_results():
|
33
|
+
for config_name in fetch_configs:
|
34
|
+
# Create a dedicated temp directory. We want to test checking out
|
35
|
+
# from scratch.
|
36
|
+
temp_dir = api.path.mkdtemp('fetch_end_to_end_test_%s' % config_name)
|
37
|
+
|
38
|
+
try:
|
39
|
+
with api.context(cwd=temp_dir):
|
40
|
+
api.python(
|
41
|
+
'fetch %s' % config_name,
|
42
|
+
api.path['checkout'].join('fetch.py'),
|
43
|
+
[config_name])
|
44
|
+
finally:
|
45
|
+
api.file.rmtree('cleanup', temp_dir)
|
46
|
+
|
47
|
+
|
48
|
+
def GenTests(api):
|
49
|
+
yield (
|
50
|
+
api.test('basic') +
|
51
|
+
api.step_data('listdir fetch_configs', api.file.listdir(
|
52
|
+
['depot_tools.py', 'infra.py']))
|
53
|
+
)
|
@@ -39,7 +39,7 @@ else
|
|
39
39
|
fi
|
40
40
|
fi
|
41
41
|
|
42
|
-
if [ -e $base_dir/.disable_auto_update ]; then
|
42
|
+
if [ -e "$base_dir/.disable_auto_update" ]; then
|
43
43
|
exit
|
44
44
|
fi
|
45
45
|
|
@@ -112,11 +112,17 @@ function update_git_repo {
|
|
112
112
|
}
|
113
113
|
|
114
114
|
# Update git checkouts.
|
115
|
-
if [ "X$DEPOT_TOOLS_UPDATE" != "X0"
|
116
|
-
then
|
117
|
-
|
118
|
-
|
119
|
-
|
115
|
+
if [ "X$DEPOT_TOOLS_UPDATE" != "X0" ]; then
|
116
|
+
if [ -e "$base_dir/.git" ]; then
|
117
|
+
cd $base_dir
|
118
|
+
update_git_repo
|
119
|
+
cd - > /dev/null
|
120
|
+
fi
|
121
|
+
|
122
|
+
# Sync CIPD and CIPD client tools.
|
123
|
+
source "$base_dir/cipd_bin_setup.sh"
|
124
|
+
cipd_bin_setup
|
125
|
+
|
126
|
+
find "$base_dir" -iname "*.pyc" -exec rm -f {} \;
|
120
127
|
fi
|
121
128
|
|
122
|
-
find "$base_dir" -iname "*.pyc" -exec rm -f {} \;
|
@@ -52,5 +52,10 @@ for /F %%x in ('git config --get remote.origin.url') DO (
|
|
52
52
|
)
|
53
53
|
call git fetch -q origin > NUL
|
54
54
|
call git rebase -q origin/master > NUL
|
55
|
-
if errorlevel 1
|
56
|
-
|
55
|
+
if errorlevel 1 (
|
56
|
+
echo Failed to update depot_tools.
|
57
|
+
goto :EOF
|
58
|
+
)
|
59
|
+
|
60
|
+
:: Sync CIPD and CIPD client tools.
|
61
|
+
call "%~dp0\cipd_bin_setup.bat"
|
data/vendor/depot_tools/vpython
CHANGED
@@ -214,10 +214,14 @@ def SaveTimestampsAndHash(root, sha1):
|
|
214
214
|
def HaveSrcInternalAccess():
|
215
215
|
"""Checks whether access to src-internal is available."""
|
216
216
|
with open(os.devnull, 'w') as nul:
|
217
|
+
# This is required to avoid modal dialog boxes after Git 2.14.1 and Git
|
218
|
+
# Credential Manager for Windows 1.12. See https://crbug.com/755694 and
|
219
|
+
# https://github.com/Microsoft/Git-Credential-Manager-for-Windows/issues/482.
|
220
|
+
child_env = dict(os.environ, GCM_INTERACTIVE='NEVER')
|
217
221
|
return subprocess.call(
|
218
|
-
|
219
|
-
|
220
|
-
|
222
|
+
['git', '-c', 'core.askpass=true', 'remote', 'show',
|
223
|
+
'https://chrome-internal.googlesource.com/chrome/src-internal/'],
|
224
|
+
shell=True, stdin=nul, stdout=nul, stderr=nul, env=child_env) == 0
|
221
225
|
|
222
226
|
|
223
227
|
def LooksLikeGoogler():
|
data/vendor/v8/AUTHORS
CHANGED
@@ -70,6 +70,7 @@ Hirofumi Mako <mkhrfm@gmail.com>
|
|
70
70
|
Honggyu Kim <honggyu.kp@gmail.com>
|
71
71
|
Ioseb Dzmanashvili <ioseb.dzmanashvili@gmail.com>
|
72
72
|
Isiah Meadows <impinball@gmail.com>
|
73
|
+
Jaime Bernardo <jaime@janeasystems.com>
|
73
74
|
Jan de Mooij <jandemooij@gmail.com>
|
74
75
|
Jay Freeman <saurik@saurik.com>
|
75
76
|
James Pike <g00gle@chilon.net>
|
@@ -1,8 +1,6 @@
|
|
1
|
+
PROJECT: v8
|
2
|
+
GERRIT_HOST: True
|
1
3
|
CODE_REVIEW_SERVER: https://codereview.chromium.org
|
2
4
|
CC_LIST: v8-reviews@googlegroups.com
|
3
5
|
VIEW_VC: https://chromium.googlesource.com/v8/v8/+/
|
4
6
|
STATUS: http://v8-status.appspot.com/status
|
5
|
-
TRY_ON_UPLOAD: False
|
6
|
-
TRYSERVER_SVN_URL: svn://svn.chromium.org/chrome-try-v8
|
7
|
-
PROJECT: v8
|
8
|
-
PENDING_REF_PREFIX: refs/pending/
|