fec8c611c8
- add new d8_pgo isolate to be used in profile tasks; - configure swarming task (test) for PGO instrumentation builder - create script for profile only execution (no build) to be used in swarming Led tested #1 with spike recipe #2. Example swarming task #3. #1 https://chromium-swarm.appspot.com/task?id=60089d22e809e410 #2 https://chromium-review.googlesource.com/c/chromium/tools/build/+/4162092/11 #3 https://chromium-swarm.appspot.com/task?id=60089fcbafb0a610 Bug: chromium:1382471 Change-Id: I782b7874c8dd77e821715395dd54dbc8990bf2c6 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4173584 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Liviu Rau <liviurau@google.com> Cr-Commit-Position: refs/heads/main@{#85521}
91 lines
2.2 KiB
Plaintext
91 lines
2.2 KiB
Plaintext
# 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",
|
|
},
|
|
"test262": {
|
|
"label": "//test/test262:v8_test262",
|
|
"type": "script",
|
|
},
|
|
"unittests": {
|
|
"label": "//test/unittests:unittests",
|
|
"type": "script",
|
|
},
|
|
"fuchsia-unittests": {
|
|
"label": "//test/unittests:v8_unittests_fuchsia",
|
|
"type": "script",
|
|
},
|
|
"webkit": {
|
|
"label": "//test/webkit:v8_webkit",
|
|
"type": "script",
|
|
},
|
|
}
|