gn_isolate_map.pyl 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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",
  },
18 19 20 21
  "benchmarks": {
    "label": "//test/benchmarks:v8_benchmarks",
    "type": "script",
  },
22 23 24 25
  "bot_default": {
    "label": "//test:v8_bot_default",
    "type": "script",
  },
26 27 28 29
  "check-static-initializers": {
    "label": "//tools:v8_check_static_initializers",
    "type": "script",
  },
30 31 32 33
  "d8_default": {
    "label": "//test:v8_d8_default",
    "type": "script",
  },
34 35 36 37 38 39 40 41
  "mjsunit": {
    "label": "//test/mjsunit:v8_mjsunit",
    "type": "script",
  },
  "mozilla": {
    "label": "//test/mozilla:v8_mozilla",
    "type": "script",
  },
42 43 44 45 46 47 48 49
  "optimize_for_size": {
    "label": "//test:v8_optimize_for_size",
    "type": "script",
  },
  "perf": {
    "label": "//test:v8_perf",
    "type": "script",
  },
50 51 52 53 54 55 56 57
  "jsfunfuzz": {
    "label": "//tools/jsfunfuzz:v8_jsfunfuzz",
    "type": "script",
  },
  "run-gcmole": {
    "label": "//tools/gcmole:v8_run_gcmole",
    "type": "script",
  },
58 59 60 61
  "run-num-fuzzer": {
    "label": "//test:v8_run_num_fuzzer",
    "type": "script",
  },
62 63 64 65
  "test262": {
    "label": "//test/test262:v8_test262",
    "type": "script",
  },
66 67 68 69
  "unittests": {
    "label": "//test/unittests:unittests",
    "type": "script",
  },
70 71 72 73
  "webkit": {
    "label": "//test/webkit:v8_webkit",
    "type": "script",
  },
74
}