Upload Kmake

This commit is contained in:
Gorochu
2026-05-26 23:36:42 -07:00
parent ba051b2f74
commit 555ec72358
41615 changed files with 13344630 additions and 1 deletions

39
deps/v8/infra/mb/PRESUBMIT.py vendored Normal file
View File

@ -0,0 +1,39 @@
# Copyright 2016 the V8 project authors. All rights reserved.
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
# This line is 'magic' in that git-cl looks for it to decide whether to
# use Python3 instead of Python2 when running the code in this file.
USE_PYTHON3 = True
def _CommonChecks(input_api, output_api):
results = []
# Validate the format of the mb_config.pyl file.
mb_script = input_api.os_path.join(input_api.PresubmitLocalPath(), '..',
'..', 'tools', 'mb', 'mb.py')
mb_config_path = input_api.os_path.join(input_api.PresubmitLocalPath(),
'mb_config.pyl')
cmd = [input_api.python3_executable, mb_script, 'validate', '--config-file',
mb_config_path]
kwargs = {'cwd': input_api.PresubmitLocalPath()}
results.extend(input_api.RunTests([
input_api.Command(name='mb_validate',
cmd=cmd, kwargs=kwargs,
message=output_api.PresubmitError)]))
return results
def CheckChangeOnUpload(input_api, output_api):
return _CommonChecks(input_api, output_api)
def CheckChangeOnCommit(input_api, output_api):
return _CommonChecks(input_api, output_api)

94
deps/v8/infra/mb/gn_isolate_map.pyl vendored Normal file
View File

@ -0,0 +1,94 @@
# Copyright 2018 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and
# test type classifications for the tests that are run on the bots.
#
# This file is based on testing/buildbot/gn_isolate_map.pyl for Chromium, but
# is covering V8 stand-alone tests instead.
# See https://cs.chromium.org/chromium/src/testing/buildbot/gn_isolate_map.pyl
# for more detailed documentation.
{
"All": {
"label": "//:All",
"type": "script",
},
"benchmarks": {
"label": "//test/benchmarks:v8_benchmarks",
"type": "script",
},
"bot_default": {
"label": "//test:v8_bot_default",
"type": "script",
},
"check-static-initializers": {
"label": "//tools:v8_check_static_initializers",
"type": "script",
},
"d8_default": {
"label": "//test:v8_d8_default",
"type": "script",
},
"d8_pgo": {
"label": "//test:d8_pgo",
"type": "script",
},
"generate-bytecode-expectations": {
"label": "//test/unittests:generate-bytecode-expectations",
"type": "script",
},
"mjsunit": {
"label": "//test/mjsunit:v8_mjsunit",
"type": "script",
},
"mozilla": {
"label": "//test/mozilla:v8_mozilla",
"type": "script",
},
"optimize_for_size": {
"label": "//test:v8_optimize_for_size",
"type": "script",
},
"perf": {
"label": "//test:v8_perf",
"type": "script",
},
"perf_integration": {
"label": "//test:v8_perf",
"type": "script",
},
"jsfunfuzz": {
"label": "//tools/jsfunfuzz:v8_jsfunfuzz",
"type": "script",
},
"run-gcmole": {
"label": "//tools/gcmole:v8_gcmole_files",
"type": "script",
},
"run-num-fuzzer": {
"label": "//test:v8_run_num_fuzzer",
"type": "script",
},
"snapshot_set": {
"label": "//:snapshot_set",
"type": "script",
},
"test262": {
"label": "//test/test262:v8_test262",
"type": "script",
},
"unittests": {
"label": "//test/unittests:v8_unittests",
"type": "script",
},
"fuchsia-unittests": {
"label": "//test/unittests:v8_unittests_fuchsia",
"type": "script",
},
"webkit": {
"label": "//test/webkit:v8_webkit",
"type": "script",
},
}

1244
deps/v8/infra/mb/mb_config.pyl vendored Normal file

File diff suppressed because it is too large Load Diff