|
| 1 | +## Copyright 2020 The ANGLE Project 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 | +# This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 | +# .json file, with the following exceptions: |
| 7 | +# * all keys must be quoted (use single quotes, please); |
| 8 | +# * comments are allowed, using '#' syntax; and |
| 9 | +# * trailing commas are allowed. |
| 10 | + |
| 11 | +# gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and |
| 12 | +# test type classifications for the tests that are run on the bots. |
| 13 | +# |
| 14 | +# This mapping is used by MB so that we can uniformly refer to test binaries |
| 15 | +# by their Ninja target names in the recipes and not need to worry about how |
| 16 | +# they are referred to in GN or GYP specifically (the GYP target name is pretty |
| 17 | +# much always the same as the Ninja target name, since GYP target names are not |
| 18 | +# hierarchical). |
| 19 | + |
| 20 | +# TODO(crbug.com/816629): Remove the need for this file altogether :). Also, |
| 21 | +# see the canonical Chromium copy: |
| 22 | +# https://chromium.googlesource.com/chromium/src/+/refs/heads/master/testing/buildbot/gn_isolate_map.pyl |
| 23 | + |
| 24 | +{ |
| 25 | + "angle_apks": { |
| 26 | + "label": "//:angle_apks", |
| 27 | + "type": "additional_compile_target", |
| 28 | + }, |
| 29 | + "angle_deqp_egl_tests": { |
| 30 | + "args": [], |
| 31 | + "label": "//src/tests:angle_deqp_egl_tests", |
| 32 | + "type": "windowed_test_launcher", |
| 33 | + }, |
| 34 | + "angle_deqp_gles2_tests": { |
| 35 | + "args": [], |
| 36 | + "label": "//src/tests:angle_deqp_gles2_tests", |
| 37 | + "type": "windowed_test_launcher", |
| 38 | + }, |
| 39 | + "angle_deqp_gles31_tests": { |
| 40 | + "args": [], |
| 41 | + "label": "//src/tests:angle_deqp_gles31_tests", |
| 42 | + "type": "windowed_test_launcher", |
| 43 | + }, |
| 44 | + "angle_deqp_gles3_tests": { |
| 45 | + "args": [], |
| 46 | + "label": "//src/tests:angle_deqp_gles3_tests", |
| 47 | + "type": "windowed_test_launcher", |
| 48 | + }, |
| 49 | + "angle_deqp_khr_gles2_tests": { |
| 50 | + "args": [], |
| 51 | + "label": "//src/tests:angle_deqp_khr_gles2_tests", |
| 52 | + "type": "windowed_test_launcher", |
| 53 | + }, |
| 54 | + "angle_deqp_khr_gles3_tests": { |
| 55 | + "args": [], |
| 56 | + "label": "//src/tests:angle_deqp_khr_gles3_tests", |
| 57 | + "type": "windowed_test_launcher", |
| 58 | + }, |
| 59 | + "angle_deqp_khr_gles31_tests": { |
| 60 | + "args": [], |
| 61 | + "label": "//src/tests:angle_deqp_khr_gles31_tests", |
| 62 | + "type": "windowed_test_launcher", |
| 63 | + }, |
| 64 | + "angle_end2end_tests": { |
| 65 | + "args": [], |
| 66 | + "label": "//src/tests:angle_end2end_tests", |
| 67 | + "type": "windowed_test_launcher", |
| 68 | + }, |
| 69 | + "angle_gles1_conformance_tests": { |
| 70 | + "args": [], |
| 71 | + "label": "//src/tests:angle_gles1_conformance_tests", |
| 72 | + "type": "windowed_test_launcher", |
| 73 | + }, |
| 74 | + "angle_perftests": { |
| 75 | + "args": [ |
| 76 | + "angle_perftests", |
| 77 | + "--non-telemetry=true", |
| 78 | + "--test-launcher-print-test-stdio=always", |
| 79 | + "--test-launcher-jobs=1", |
| 80 | + "--test-launcher-retry-limit=0", |
| 81 | + ], |
| 82 | + "label": "//src/tests:angle_perftests", |
| 83 | + "script": "//testing/scripts/run_performance_tests.py", |
| 84 | + "type": "script", |
| 85 | + }, |
| 86 | + "angle_restricted_trace_gold_tests": { |
| 87 | + "type": "script", |
| 88 | + "label": "//src/tests/restricted_traces:angle_restricted_trace_gold_tests", |
| 89 | + "script": "//src/tests/restricted_traces/restricted_trace_gold_tests.py", |
| 90 | + }, |
| 91 | + "angle_unittests": { |
| 92 | + "label": "//src/tests:angle_unittests", |
| 93 | + "type": "console_test_launcher", |
| 94 | + }, |
| 95 | + "angle_white_box_perftests": { |
| 96 | + "args": [], |
| 97 | + "label": "//src/tests:angle_white_box_tests", |
| 98 | + "type": "windowed_test_launcher", |
| 99 | + }, |
| 100 | + "angle_white_box_tests": { |
| 101 | + "args": [], |
| 102 | + "label": "//src/tests:angle_white_box_tests", |
| 103 | + "type": "windowed_test_launcher", |
| 104 | + }, |
| 105 | +} |
0 commit comments